Skip to content

Commit 49f5785

Browse files
committed
Correction des attributs SVG dans le composant FicheCard : remplacement de 'stroke-width', 'stroke-linecap' et 'stroke-linejoin' par leur équivalent camelCase 'strokeWidth', 'strokeLinecap' et 'strokeLinejoin'.
1 parent 40bd736 commit 49f5785

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/pages/fiche/Card.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,16 @@ export const FicheCard: FunctionComponent<FicheCardProps> = ({
176176
<svg
177177
stroke="currentColor"
178178
fill="none"
179-
stroke-width="2"
179+
strokeWidth="2"
180180
viewBox="0 0 24 24"
181181
aria-hidden="true"
182182
height="200px"
183183
width="200px"
184184
xmlns="http://www.w3.org/2000/svg"
185185
className="size-6">
186186
<path
187-
stroke-linecap="round"
188-
stroke-linejoin="round"
187+
strokeLinecap="round"
188+
strokeLinejoin="round"
189189
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
190190
</svg>
191191
</button>

0 commit comments

Comments
 (0)