gen icons, add favorites

This commit is contained in:
2024-05-30 20:10:03 +02:00
parent 70227b3e46
commit 4e25dad292
215 changed files with 10446 additions and 8344 deletions

View File

@@ -0,0 +1,31 @@
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