mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-17 20:59:31 +00:00
chore: update deps, apply updated eslint ocnfig
This commit is contained in:
@@ -1,19 +1,23 @@
|
||||
import { SVGProps } from 'react'
|
||||
const SvgComponent = (props: SVGProps<SVGSVGElement>) => (
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width={16}
|
||||
fill={'none'}
|
||||
height={16}
|
||||
fill="none"
|
||||
viewBox="0 0 16 16"
|
||||
viewBox={'0 0 16 16'}
|
||||
width={16}
|
||||
xmlns={'http://www.w3.org/2000/svg'}
|
||||
{...props}
|
||||
>
|
||||
<g fill="#fff" clipPath="url(#clip0_6693_1154)">
|
||||
<path d="M8 7.334a2.667 2.667 0 1 0 0-5.333 2.667 2.667 0 0 0 0 5.334zm0-4a1.333 1.333 0 1 1 0 2.667 1.333 1.333 0 0 1 0-2.666zM8 8.668a4.667 4.667 0 0 0-4.667 4.666.667.667 0 1 0 1.334 0 3.333 3.333 0 0 1 6.666 0 .667.667 0 1 0 1.334 0A4.667 4.667 0 0 0 8 8.668z" />
|
||||
<g clipPath={'url(#clip0_6693_1154)'} fill={'#fff'}>
|
||||
<path
|
||||
d={
|
||||
'M8 7.334a2.667 2.667 0 1 0 0-5.333 2.667 2.667 0 0 0 0 5.334zm0-4a1.333 1.333 0 1 1 0 2.667 1.333 1.333 0 0 1 0-2.666zM8 8.668a4.667 4.667 0 0 0-4.667 4.666.667.667 0 1 0 1.334 0 3.333 3.333 0 0 1 6.666 0 .667.667 0 1 0 1.334 0A4.667 4.667 0 0 0 8 8.668z'
|
||||
}
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_6693_1154">
|
||||
<path fill="#fff" d="M0 0h16v16H0z" />
|
||||
<clipPath id={'clip0_6693_1154'}>
|
||||
<path d={'M0 0h16v16H0z'} fill={'#fff'} />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
Reference in New Issue
Block a user