diff --git a/src/assets/icons/visu/duelResult/challengeWon.svg b/src/assets/icons/visu/duelResult/challengeWon.svg
new file mode 100644
index 0000000000000000000000000000000000000000..aecc4cb6ca4749922b4fc1b358030ad939d5de8b
--- /dev/null
+++ b/src/assets/icons/visu/duelResult/challengeWon.svg
@@ -0,0 +1,12 @@
+<svg width="320" height="321" viewBox="0 0 320 321" fill="none" xmlns="http://www.w3.org/2000/svg">
+<g opacity="0.6" filter="url(#filter0_f_6_18534)">
+<path d="M137.316 4.00668L159.647 150.867L160.871 2.32359L161.064 150.872L184.413 4.16994L162.464 151.088L207.417 9.50447L163.817 151.51L229.37 18.208L165.091 152.129L249.779 30.0862L166.259 152.931L268.191 44.8736L167.295 153.899L284.193 62.24L168.174 155.01L297.428 81.7974L168.878 156.239L307.6 103.109L169.391 157.56L314.482 125.698L169.702 158.942L317.921 149.061L169.803 160.355L317.839 172.676L169.692 161.768L314.239 196.015L169.372 163.148L307.2 218.556L168.85 164.465L296.88 239.796L168.137 165.69L283.51 259.262L167.25 166.795L267.388 276.517L166.208 167.755L248.874 291.176L165.034 168.549L228.383 302.912L163.756 169.159L206.371 311.464L162.4 169.572L183.33 316.639L160.999 169.779L159.775 318.322L159.582 169.774L136.233 316.475L158.181 169.558L113.229 311.141L156.829 169.135L91.2763 302.437L155.555 168.516L70.8664 290.559L154.387 167.714L52.4548 275.772L153.351 166.747L36.4528 258.405L152.472 165.636L23.2179 238.848L151.768 164.406L13.0457 217.536L151.254 163.085L6.1634 194.947L150.944 161.703L2.72477 171.584L150.843 160.29L2.80662 147.969L150.954 158.877L6.40713 124.631L151.274 157.497L13.4459 102.089L151.796 156.18L23.7656 80.8488L152.509 154.955L37.1358 61.3837L153.396 153.851L53.2578 44.1286L154.438 152.89L71.7714 29.4692L155.611 152.096L92.2632 17.7328L156.89 151.486L114.275 9.18161L158.246 151.073L137.316 4.00668Z" fill="#FFD951"/>
+</g>
+<defs>
+<filter id="filter0_f_6_18534" x="0.724731" y="0.323486" width="319.196" height="319.998" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
+<feFlood flood-opacity="0" result="BackgroundImageFix"/>
+<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
+<feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_6_18534"/>
+</filter>
+</defs>
+</svg>
diff --git a/src/components/Duel/DuelResultModal.tsx b/src/components/Duel/DuelResultModal.tsx
index 0c99d1a3a71b9b90ec7e288a64ce212e139ac7e0..7d83254a60e93f9c37f13e936f44806215f37bef 100644
--- a/src/components/Duel/DuelResultModal.tsx
+++ b/src/components/Duel/DuelResultModal.tsx
@@ -1,5 +1,6 @@
 import Button from '@material-ui/core/Button'
 import Dialog from '@material-ui/core/Dialog'
+import challengeWon from 'assets/icons/visu/duelResult/challengeWon.svg'
 import defaultIcon from 'assets/icons/visu/duelResult/default.svg'
 import { useI18n } from 'cozy-ui/transpiled/react/I18n'
 import Icon from 'cozy-ui/transpiled/react/Icon'
@@ -60,11 +61,16 @@ const DuelResultModal: React.FC<DuelResultModalProps> = ({
         {t('duel_result_modal.accessibility.window_title')}
       </div>
       <div className="duel-result-modal-root ">
-        <Icon
-          className="imgResult"
-          icon={win ? winIcon : lossIcon}
-          size={208}
-        />
+        <div className="imgResultContainer">
+          {win && (
+            <Icon className="challengeWon" icon={challengeWon} size={300} />
+          )}
+          <Icon
+            className="imgResult"
+            icon={win ? winIcon : lossIcon}
+            size={180}
+          />
+        </div>
         <div className="text-28-normal-uppercase title">
           {win
             ? t('duel_result_modal.sucess.title')
diff --git a/src/components/Duel/duelResultModal.scss b/src/components/Duel/duelResultModal.scss
index 672c1629a1b48c68b4ef18ab3ddaf264075447fc..ba90fa755ea6d27f55b8bdf887ca4ded86bb2154 100644
--- a/src/components/Duel/duelResultModal.scss
+++ b/src/components/Duel/duelResultModal.scss
@@ -9,3 +9,18 @@
 #accessibility-title {
   display: none;
 }
+
+.imgResultContainer {
+  position: relative;
+  height: 300px;
+  width: 100%;
+  .challengeWon {
+    position: absolute;
+    transform: translateX(-50%);
+  }
+
+  .imgResult {
+    position: absolute;
+    transform: translate(-50%, 32%);
+  }
+}