mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 20:59:27 +00:00
31 lines
970 B
TypeScript
31 lines
970 B
TypeScript
import type { SVGProps } from 'react'
|
|
import { Ref, forwardRef, memo } from 'react'
|
|
const SvgEdit2Outline = (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(#edit-2-outline_svg__a)'} fill={'currentcolor'}>
|
|
<path
|
|
d={
|
|
'M19 20H5a1 1 0 0 0 0 2h14a1 1 0 0 0 0-2M5 18h.09l4.17-.38a2 2 0 0 0 1.21-.57l9-9a1.92 1.92 0 0 0-.07-2.71L16.66 2.6A2 2 0 0 0 14 2.53l-9 9a2 2 0 0 0-.57 1.21L4 16.91A1 1 0 0 0 5 18M15.27 4 18 6.73l-2 1.95L13.32 6zm-8.9 8.91L12 7.32l2.7 2.7-5.6 5.6-3 .28z'
|
|
}
|
|
/>
|
|
</g>
|
|
<defs>
|
|
<clipPath id={'edit-2-outline_svg__a'}>
|
|
<path d={'M0 0h24v24H0z'} fill={'#fff'} />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
)
|
|
const ForwardRef = forwardRef(SvgEdit2Outline)
|
|
const Memo = memo(ForwardRef)
|
|
|
|
export default Memo
|