saleor-dashboard/src/icons/Checkbox.tsx

12 lines
254 B
TypeScript
Raw Normal View History

2020-08-17 11:42:37 +00:00
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
import React from "react";
const ArrowSort = createSvgIcon(
<>
<rect x="0.5" y="0.5" width="13" height="13" stroke="#616161" />
</>,
"ArrowSort"
);
export default ArrowSort;