saleor-dashboard/src/icons/Home.tsx

14 lines
430 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 Home = createSvgIcon(
2019-06-19 14:40:52 +00:00
<>
<rect width="24" height="24" fill="black" fillOpacity={0} />
<rect width="20" height="17" fillOpacity={0} transform="translate(2 3)" />
<path d="M12 5.69L17 10.19V12V18H15V14V12H13H11H9V14V18H7V12V10.19L12 5.69ZM12 3L2 12H5V20H11V14H13V20H19V12H22L12 3Z" />
</>,
"Home",
);
2019-10-30 14:34:24 +00:00
2019-06-19 14:40:52 +00:00
export default Home;