saleor-dashboard/src/icons/Home.tsx
Michał Droń d5c9a3dae8
Add trailing commas (#2062)
* Require trailing commas

* Add trailing commas

* Add trailing commas in testUtils dir

* Add trailing commas
2022-06-21 11:36:55 +02:00

13 lines
430 B
TypeScript

import { createSvgIcon } from "@material-ui/core/utils";
import React from "react";
const Home = createSvgIcon(
<>
<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",
);
export default Home;