15 lines
512 B
TypeScript
15 lines
512 B
TypeScript
import { memo, SVGProps } from 'react';
|
|
|
|
const VectorStrokeIcon2 = (props: SVGProps<SVGSVGElement>) => (
|
|
<svg preserveAspectRatio='none' viewBox='0 0 16 4' fill='none' xmlns='http://www.w3.org/2000/svg' {...props}>
|
|
<path
|
|
fillRule='evenodd'
|
|
clipRule='evenodd'
|
|
d='M0 2C0 0.89543 0.89543 0 2 0H14C15.1046 0 16 0.89543 16 2C16 3.10457 15.1046 4 14 4H2C0.89543 4 0 3.10457 0 2Z'
|
|
fill='white'
|
|
/>
|
|
</svg>
|
|
);
|
|
const Memo = memo(VectorStrokeIcon2);
|
|
export { Memo as VectorStrokeIcon2 };
|