saleor-dashboard/src/icons/StoreMall.tsx
Krzysztof Wolski a82de30309
Add circleci config and enhance our linters (#519)
* Add circleci config

* Season linting config

* Apply code style
2020-05-14 11:30:32 +02:00

13 lines
452 B
TypeScript

import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
import React from "react";
const StoreMall = createSvgIcon(
<>
<rect width="24" height="24" fillOpacity="0" />
<rect width="18" height="16" fillOpacity="0" transform="translate(3 4)" />
<path d="M18.36 9L18.96 12H5.04L5.64 9H18.36ZM20 4H4V6H20V4ZM20 7H4L3 12V14H4V20H14V14H18V20H20V14H21V12L20 7ZM6 18V14H12V18H6Z" />
</>,
"StoreMall"
);
export default StoreMall;