mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 12:33:18 +00:00
31 lines
853 B
TypeScript
31 lines
853 B
TypeScript
import type { SVGProps } from 'react'
|
|
import { Ref, forwardRef, memo } from 'react'
|
|
const SvgMoreHorizontalOutline = (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(#more-horizontal-outline_svg__a)'} fill={'currentcolor'}>
|
|
<path
|
|
d={
|
|
'M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4M19 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4M5 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4'
|
|
}
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id={'more-horizontal-outline_svg__a'}>
|
|
<path d={'M0 0h24v24H0z'} fill={'#fff'} />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
const ForwardRef = forwardRef(SvgMoreHorizontalOutline)
|
|
const Memo = memo(ForwardRef)
|
|
|
|
export default Memo
|