13 lines
683 B
TypeScript
13 lines
683 B
TypeScript
import { memo, SVGProps } from 'react';
|
|
|
|
const VectorIcon = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg preserveAspectRatio='none' viewBox='0 0 20 18' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
<path
|
|
d='M20 8V17C20 17.2652 19.8946 17.5196 19.7071 17.7071C19.5196 17.8946 19.2652 18 19 18H1C0.734784 18 0.48043 17.8946 0.292893 17.7071C0.105357 17.5196 0 17.2652 0 17V8H20ZM20 6H0V1C0 0.734784 0.105357 0.48043 0.292893 0.292893C0.48043 0.105357 0.734784 0 1 0H8.414L10.414 2H19C19.2652 2 19.5196 2.10536 19.7071 2.29289C19.8946 2.48043 20 2.73478 20 3V6Z'
|
|
fill='black'
|
|
/>
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorIcon);
|
|
export { Memo as VectorIcon };
|