15 lines
590 B
TypeScript
15 lines
590 B
TypeScript
import { memo, SVGProps } from 'react';
|
|
|
|
const VectorStrokeIcon2 = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg preserveAspectRatio='none' viewBox='0 0 22 9' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
<path
|
|
fillRule='evenodd'
|
|
clipRule='evenodd'
|
|
d='M0.5 2.5C0.5 1.39543 1.39543 0.5 2.5 0.5H19.5C20.6046 0.5 21.5 1.39544 21.5 2.5V7.5C21.5 8.05228 21.0523 8.5 20.5 8.5H1.5C0.947715 8.5 0.5 8.05228 0.5 7.5V2.5ZM19.5 2.5H2.5V6.5H19.5V2.5Z'
|
|
fill='#1D2129'
|
|
/>
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorStrokeIcon2);
|
|
export { Memo as VectorStrokeIcon2 };
|