saleor-dashboard/src/icons/ItalicIcon.tsx

12 lines
279 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 ItalicIcon = createSvgIcon(
2019-06-19 14:40:52 +00:00
<>
<path d="M4.19691 0V3H6.51571L2.92735 11H0V14H8.39383V11H6.07503L9.66339 3H12.5907V0H4.19691Z" />
</>,
"ItalicIcon"
);
2019-10-30 14:34:24 +00:00
2019-06-19 14:40:52 +00:00
export default ItalicIcon;