28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
|
import React from "react";
|
|
|
|
export const Sales = createSvgIcon(
|
|
<>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M31.4911 6H40.8033V14.5361L37.0667 11.1109L26.5267 21.6509L16.854 19.7163L7.49492 30.9473L6 29.7015L16.1003 17.5811L25.8871 19.5385L35.6308 9.79474L31.4911 6ZM13.0731 35.1892H9.18117V40.0541H13.0731V35.1892ZM7.23522 33.2432V42H15.019V33.2432H7.23522ZM17.9379 25.4595H21.8298V40.0541H17.9379V25.4595ZM15.992 42V23.5135H23.7758V42H15.992ZM30.5866 28.3784H26.6947V40.0541H30.5866V28.3784ZM24.7487 26.4324V42H32.5325V26.4324H24.7487ZM35.4514 19.6216H39.3433V40.0541H35.4514V19.6216ZM33.5055 42V17.6757H41.2893V42H33.5055Z"
|
|
fill="url(#paint0_linear)"
|
|
/>
|
|
<defs>
|
|
<linearGradient
|
|
id="paint0_linear"
|
|
x1="6"
|
|
y1="6"
|
|
x2="45.6223"
|
|
y2="46.3533"
|
|
gradientUnits="userSpaceOnUse"
|
|
>
|
|
<stop stopColor="#06847B" />
|
|
<stop offset="1" stopColor="#3EE7CD" />
|
|
</linearGradient>
|
|
</defs>
|
|
</>
|
|
);
|
|
Sales.displayName = "Sales";
|
|
export default Sales;
|