fix console error Invalid DOM property stroke-width

Invalid DOM property `stroke-width`. Did you mean `strokeWidth`? Error Component Stack
This commit is contained in:
tlaloc911
2025-03-29 20:07:06 -06:00
committed by Anoop M D
parent 2d1f7d0f33
commit 6feea75e45

View File

@@ -8,7 +8,7 @@ const DotIcon = ({ width }) => {
className='inline-block'
>
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z" stroke-width="0" fill="currentColor" />
<path d="M12 7a5 5 0 1 1 -4.995 5.217l-.005 -.217l.005 -.217a5 5 0 0 1 4.995 -4.783z" strokeWidth="0" fill="currentColor" />
</svg>
);
};