saleor-dashboard/src/icons/Checkbox.tsx

19 lines
294 B
TypeScript
Raw Normal View History

import { createSvgIcon } from "@material-ui/core/utils";
2020-08-17 11:42:37 +00:00
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
</>,
"Checkbox",
2020-08-17 11:42:37 +00:00
);
2020-08-17 14:44:40 +00:00
export default Checkbox;