@bemit/consent-ui-formanta
Version:
© 2022 [bemit](https://bemit.eu)
36 lines (35 loc) • 1.17 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IcCheckBoxIndeterminate = void 0;
var _react = _interopRequireDefault(require("react"));
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
var IcCheckBoxIndeterminate = exports.IcCheckBoxIndeterminate = function IcCheckBoxIndeterminate(_ref) {
var fontSize = _ref.fontSize,
fill = _ref.fill,
style = _ref.style;
return (0, _jsxRuntime.jsxs)("svg", {
height: fontSize,
viewBox: "0 0 24 24",
width: fontSize,
fill: fill || 'currentColor',
style: style,
children: [(0, _jsxRuntime.jsx)("g", {
children: (0, _jsxRuntime.jsx)("rect", {
fill: "none",
height: "24",
width: "24"
})
}), (0, _jsxRuntime.jsx)("g", {
children: (0, _jsxRuntime.jsx)("g", {
children: (0, _jsxRuntime.jsx)("g", {
children: (0, _jsxRuntime.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"
})
})
})
})]
});
};