saleor-dashboard/src/icons/Sales.tsx

17 lines
693 B
TypeScript
Raw Normal View History

import { createSvgIcon } from "@material-ui/core/utils";
2019-08-09 10:26:22 +00:00
import React from "react";
2019-06-19 14:40:52 +00:00
2019-10-30 14:34:24 +00:00
const Sales = createSvgIcon(
2019-06-19 14:40:52 +00:00
<>
<path
2019-09-16 15:40:04 +00:00
fillRule="evenodd"
clipRule="evenodd"
2019-09-10 13:28:09 +00:00
d="M40.1974 14H49.7682V22.7732L45.9287 19.2537L35.0969 30.0855L25.1555 28.0973L15.5364 39.6402L14 38.3598L24.3809 25.9027L34.4395 27.9145L44.453 17.901L40.1974 14ZM21.2682 44H17.2682V49H21.2682V44ZM15.2682 42V51H23.2682V42H15.2682ZM26.2682 34H30.2682V49H26.2682V34ZM24.2682 51V32H32.2682V51H24.2682ZM39.2682 37H35.2682V49H39.2682V37ZM33.2682 35V51H41.2682V35H33.2682ZM44.2682 28H48.2682V49H44.2682V28ZM42.2682 51V26H50.2682V51H42.2682Z"
fill="#06847B"
2019-06-19 14:40:52 +00:00
/>
</>,
"Sales"
);
2019-10-30 14:34:24 +00:00
2019-06-19 14:40:52 +00:00
export default Sales;