saleor-dashboard/src/icons/Unstyled.tsx

15 lines
408 B
TypeScript
Raw Normal View History

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 Unstyled = createSvgIcon(
2019-06-19 14:40:52 +00:00
<>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M17.5028 0H17.5027H15.0886H11.4673V2.41416L15.0886 2.41416V9.65714H5.43187V7.72803L0 10.8641L5.43187 14.0002V12.0713L17.5025 12.0713V12.0708H17.5028V0Z"
/>
</>
2019-10-30 14:34:24 +00:00
, "Unstyled")
2019-06-19 14:40:52 +00:00
export default Unstyled;