@geneui/icons
Version:
Gene UI icons distributed as SVG React components.
24 lines (21 loc) • 889 B
JavaScript
import { _ as _objectWithoutProperties, a as _extends } from './ActivityRecent.js';
import React from 'react';
var _excluded = ["size", "color"];
var SvgCircleInfo = function SvgCircleInfo(_ref) {
var _ref$size = _ref.size,
size = _ref$size === void 0 ? 24 : _ref$size,
_ref$color = _ref.color,
color = _ref$color === void 0 ? "currentColor" : _ref$color,
props = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
width: size,
height: size,
viewBox: "0 0 24 24",
fill: color,
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm.75 14.243a.75.75 0 1 1-1.5 0v-5.243a.75.75 0 1 1 1.5 0v5.243Zm-.75-7.406a.914.914 0 1 1 0-1.829.914.914 0 0 1 0 1.829Z",
fill: color
}));
};
export { SvgCircleInfo as S };