Files
actual/packages/component-library/src/icons/v1/Apparel.tsx
2025-03-06 18:16:59 +00:00

19 lines
409 B
TypeScript

import * as React from 'react';
import type { SVGProps } from 'react';
export const SvgApparel = (props: SVGProps<SVGSVGElement>) => (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
style={{
color: 'inherit',
...props.style,
}}
>
<path
d="M7 0H6L0 3v6l4-1v12h12V8l4 1V3l-6-3h-1a3 3 0 0 1-6 0z"
fill="currentColor"
/>
</svg>
);