@bemit/consent-ui-formanta
Version:
© 2022 [bemit](https://bemit.eu)
19 lines • 489 B
JavaScript
import React from 'react';
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
export const IcInfo = ({
fontSize = '1em',
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: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"
})]
});