19 lines
410 B
TypeScript
19 lines
410 B
TypeScript
import createSvgIcon from "@material-ui/icons/utils/createSvgIcon";
|
|
import React from "react";
|
|
|
|
const CheckboxIndeterminate = createSvgIcon(
|
|
<>
|
|
<rect
|
|
x="5"
|
|
y="5"
|
|
width="14"
|
|
height="14"
|
|
stroke="currentColor"
|
|
fill="none"
|
|
/>
|
|
<rect x="8" y="11" width="8" height="2" fill="currentColor" />
|
|
</>,
|
|
"CheckboxIndeterminate"
|
|
);
|
|
|
|
export default CheckboxIndeterminate;
|