@bemit/consent-ui-formanta
Version:
© 2022 [bemit](https://bemit.eu)
19 lines • 486 B
JavaScript
import React from 'react';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export const IcCheckBoxOutline = ({
fontSize,
fill,
style
}) => _jsxs("svg", {
height: fontSize,
viewBox: "0 0 24 24",
width: fontSize,
fill: fill || 'currentColor',
style: style,
children: [_jsx("path", {
d: "M0 0h24v24H0z",
fill: "none"
}), _jsx("path", {
d: "M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z"
})]
});