29 lines
1.4 KiB
TypeScript
29 lines
1.4 KiB
TypeScript
![]() |
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
||
|
import * as React from "react";
|
||
|
|
||
|
export const Taxes = createSvgIcon(
|
||
|
<>
|
||
|
<path
|
||
|
fillRule="evenodd"
|
||
|
clipRule="evenodd"
|
||
|
d="M8 6H37.3684V24.9474H35.4737V7.89474H9.89474V40.1053H35.4737V37.7368H37.3684V42H8V6ZM13.6848 24H16.5269V26.8421H13.6848V24ZM21.2624 24H18.4203V26.8421H21.2624V24ZM23.1594 24H26.0015V26.8421H23.1594V24ZM30.737 24H27.8949V26.8421H30.737V24ZM13.6848 28.7355H16.5269V31.5777H13.6848V28.7355ZM21.2624 28.7355H18.4203V31.5777H21.2624V28.7355ZM23.1594 28.7355H26.0015V31.5777H23.1594V28.7355ZM16.5269 33.4746H13.6848V36.3167H16.5269V33.4746ZM18.4203 33.4746H21.2624V36.3167H18.4203V33.4746ZM26.0015 33.4746H23.1594V36.3167H26.0015V33.4746ZM29.79 14.5252H15.5795V19.262H29.79V14.5252ZM13.6848 12.6305V21.1568H31.6848V12.6305H13.6848ZM40.2116 33.4746H37.3695V36.3167H40.2116V33.4746ZM31.6848 27.7898H34.5269V30.632H31.6848V27.7898ZM32.3531 36.9845L40.8794 28.4581L39.5396 27.1184L31.0133 35.6447L32.3531 36.9845Z"
|
||
|
fill="url(#paint0_linear)"
|
||
|
/>
|
||
|
<defs>
|
||
|
<linearGradient
|
||
|
id="paint0_linear"
|
||
|
x1="7.03296"
|
||
|
y1="6"
|
||
|
x2="40.4173"
|
||
|
y2="43.2798"
|
||
|
gradientUnits="userSpaceOnUse"
|
||
|
>
|
||
|
<stop stopColor="#13BEBB" />
|
||
|
<stop offset="1" stopColor="#3EE7CD" />
|
||
|
</linearGradient>
|
||
|
</defs>
|
||
|
</>
|
||
|
);
|
||
|
Taxes.displayName = "Taxes";
|
||
|
export default Taxes;
|