mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 20:59:27 +00:00
30 lines
892 B
TypeScript
30 lines
892 B
TypeScript
import type { SVGProps } from 'react'
|
|
import { Ref, forwardRef, memo } from 'react'
|
|
const SvgPlusCircleOutline = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
|
|
<svg
|
|
fill={'none'}
|
|
height={'1em'}
|
|
ref={ref}
|
|
viewBox={'0 0 24 24'}
|
|
width={'1em'}
|
|
xmlns={'http://www.w3.org/2000/svg'}
|
|
{...props}
|
|
>
|
|
<g clipPath={'url(#plus-circle-outline_svg__a)'} fill={'currentcolor'}>
|
|
<path d={'M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16'} />
|
|
<path
|
|
d={'M15 11h-2V9a1 1 0 0 0-2 0v2H9a1 1 0 0 0 0 2h2v2a1 1 0 0 0 2 0v-2h2a1 1 0 0 0 0-2'}
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id={'plus-circle-outline_svg__a'}>
|
|
<path d={'M0 0h24v24H0z'} fill={'#fff'} />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
const ForwardRef = forwardRef(SvgPlusCircleOutline)
|
|
const Memo = memo(ForwardRef)
|
|
|
|
export default Memo
|