UNPKG

@bemit/consent-ui-formanta

Version:

© 2022 [bemit](https://bemit.eu)

27 lines (26 loc) 894 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IcCheckBox = void 0; var _react = _interopRequireDefault(require("react")); var _jsxRuntime = require("react/jsx-runtime"); function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; } var IcCheckBox = exports.IcCheckBox = function IcCheckBox(_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)("path", { d: "M0 0h24v24H0z", fill: "none" }), (0, _jsxRuntime.jsx)("path", { d: "M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z" })] }); };