2019-06-19 14:40:52 +00:00
|
|
|
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
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 StoreMall = createSvgIcon(
|
2019-06-19 14:40:52 +00:00
|
|
|
<>
|
|
|
|
<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" />
|
2020-05-14 09:30:32 +00:00
|
|
|
</>,
|
|
|
|
"StoreMall"
|
|
|
|
);
|
2019-10-30 14:34:24 +00:00
|
|
|
|
2019-06-19 14:40:52 +00:00
|
|
|
export default StoreMall;
|