saleor-dashboard/src/icons/Checkbox.tsx

19 lines
304 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";
2020-08-17 14:44:40 +00:00
const Checkbox = createSvgIcon(
2020-08-17 11:42:37 +00:00
<>
2020-08-17 14:44:40 +00:00
<rect
x="5"
y="5"
width="14"
height="14"
stroke="currentColor"
fill="none"
/>
2020-08-17 11:42:37 +00:00
</>,
2020-08-17 14:44:40 +00:00
"Checkbox"
2020-08-17 11:42:37 +00:00
);
2020-08-17 14:44:40 +00:00
export default Checkbox;