mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
32 lines
961 B
TypeScript
32 lines
961 B
TypeScript
import type { SVGProps } from 'react'
|
|
import { Ref, forwardRef, memo } from 'react'
|
|
const SvgFunnelOutline1 = (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(#funnel-outline_1_svg__a)'}>
|
|
<path
|
|
d={
|
|
'M13.9 22a1 1 0 0 1-.6-.2l-4-3.05a1 1 0 0 1-.39-.8v-3.27l-4.8-9.22A1 1 0 0 1 5 4h14a1 1 0 0 1 .86.49 1 1 0 0 1 0 1l-5 9.21V21a1 1 0 0 1-.55.9 1 1 0 0 1-.41.1m-3-4.54 2 1.53v-4.55A1 1 0 0 1 13 14l4.3-8H6.64l4.13 8a1 1 0 0 1 .11.46z'
|
|
}
|
|
fill={'currentcolor'}
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id={'funnel-outline_1_svg__a'}>
|
|
<path d={'M0 0h24v24H0z'} fill={'#fff'} />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
const ForwardRef = forwardRef(SvgFunnelOutline1)
|
|
const Memo = memo(ForwardRef)
|
|
|
|
export default Memo
|