13 lines
776 B
TypeScript
13 lines
776 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='M1 0H19C19.2652 0 19.5196 0.105357 19.7071 0.292893C19.8946 0.48043 20 0.734784 20 1V17C20 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 17V1C0 0.734784 0.105357 0.48043 0.292893 0.292893C0.48043 0.105357 0.734784 0 1 0ZM11 10V9H14V7H11.414L13.536 4.879L12.121 3.464L10 5.586L7.879 3.464L6.464 4.88L8.586 7H6V9H9V10H6V12H9V14H11V12H14V10H11Z'
|
|
fill='black'
|
|
/>
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorIcon);
|
|
export { Memo as VectorIcon };
|