mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 03:23:51 -05:00
19 lines
409 B
TypeScript
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>
|
|
);
|