saleor-dashboard/src/icons/ArrowDropdown.tsx

12 lines
253 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 ArrowDropdown = createSvgIcon(
2019-06-19 14:40:52 +00:00
<g style={{ fillRule: "evenodd" }}>
<path d="M7 10l5 5 5-5z" />
2019-10-30 14:34:24 +00:00
</g>,
"ArrowDropdown",
2019-06-19 14:40:52 +00:00
);
2019-10-30 14:34:24 +00:00
export default ArrowDropdown;