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