15 lines
512 B
TypeScript
15 lines
512 B
TypeScript
import { memo, SVGProps } from 'react';
|
|
|
|
const VectorStrokeIcon3 = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg preserveAspectRatio='none' viewBox='0 0 2 6' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
<path
|
|
fillRule='evenodd'
|
|
clipRule='evenodd'
|
|
d='M1 0C1.55228 0 2 0.447715 2 1V5C2 5.55228 1.55228 6 1 6C0.447715 6 0 5.55228 0 5V1C0 0.447715 0.447715 0 1 0Z'
|
|
fill='#1D2129'
|
|
/>
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorStrokeIcon3);
|
|
export { Memo as VectorStrokeIcon3 };
|