2022-02-18 09:27:55 +00:00
|
|
|
import { createSvgIcon } from "@material-ui/core/utils";
|
2020-08-17 14:44:40 +00:00
|
|
|
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;
|