saleor-dashboard/src/icons/ArrowSort.tsx

18 lines
459 B
TypeScript
Raw Normal View History

2019-09-02 08:44:26 +00:00
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
import React from "react";
2019-10-30 14:34:24 +00:00
const ArrowSort = createSvgIcon(
2019-09-02 08:44:26 +00:00
<>
<rect width="24" height="24" fill="transparent" />
<path
fillRule="evenodd"
clipRule="evenodd"
d="M11.0328 17.1401V4H12.9672V17.1401L14.6322 15.4751L16 16.8429L12 20.8429L8 16.8429L9.36782 15.4751L11.0328 17.1401Z"
fill="currentColor"
/>
</>,
"ArrowSort"
);
2019-10-30 14:34:24 +00:00
2019-09-02 08:44:26 +00:00
export default ArrowSort;