saleor-dashboard/src/icons/Orders.tsx

29 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-06-19 14:40:52 +00:00
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
import * as React from "react";
export const Orders = createSvgIcon(
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M34.5789 6H9V42H34.5789V36.7895H32.6842V40.1053H10.8947V7.89474H32.6842V25.4211H34.5789V6ZM31.7369 35.2872L39.5121 27.5121L38.1723 26.1723L31.7369 32.6077L28.6173 29.4881L27.2775 30.8279L31.7369 35.2872ZM14.6842 11.6842H17.5263V14.5263H14.6842V11.6842ZM27.9474 11.6842H19.4211V14.5263H27.9474V11.6842ZM14.6842 17.3684H17.5263V20.2105H14.6842V17.3684ZM27.9474 17.3684H19.4211V20.2105H27.9474V17.3684ZM14.6842 23.0526H17.5263V25.8947H14.6842V23.0526ZM27.9474 23.0526H19.4211V25.8947H27.9474V23.0526Z"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="9"
y1="6"
x2="48.3106"
y2="40.6161"
gradientUnits="userSpaceOnUse"
>
<stop stopColor="#13BEBB" />
<stop offset="1" stopColor="#3EE7CD" />
</linearGradient>
</defs>
</>
);
Orders.displayName = "Orders";
export default Orders;