saleor-dashboard/src/icons/StrikethroughIcon.tsx

11 lines
327 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 HeaderOne = createSvgIcon(
2019-06-19 14:40:52 +00:00
<>
<path d="M6.53333 14H10.2667V11.2H6.53333V14ZM1.86667 0V2.8H6.53333V5.6H10.2667V2.8H14.9333V0H1.86667ZM0 9.33333H16.8V7.46667H0V9.33333Z" />
</>
2019-10-30 14:34:24 +00:00
, "HeaderOne")
2019-06-19 14:40:52 +00:00
export default HeaderOne;