@bemit/consent-ui-formanta
Version:
28 lines • 671 B
JavaScript
import React from 'react';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export const IcCheckBoxIndeterminate = ({
fontSize,
fill,
style
}) => _jsxs("svg", {
height: fontSize,
viewBox: "0 0 24 24",
width: fontSize,
fill: fill || 'currentColor',
style: style,
children: [_jsx("g", {
children: _jsx("rect", {
fill: "none",
height: "24",
width: "24"
})
}), _jsx("g", {
children: _jsx("g", {
children: _jsx("g", {
children: _jsx("path", {
d: "M19,3H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V5C21,3.9,20.1,3,19,3z M17,13H7v-2h10V13z"
})
})
})
})]
});