@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.3 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Circle = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Circle",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M25.2748 0.00012207C11.4624 0.00012207 0.274902 11.1877 0.274902 25.0001C0.274902 38.8125 11.4624 50 25.2748 50C39.0873 50 50.2749 38.8126 50.2749 25.0001C50.2749 11.1875 39.0874 0.00012207 25.2748 0.00012207ZM25.2748 45.0001C14.2249 45.0001 5.27482 36.0501 5.27482 25.0001C5.27482 13.95 14.2249 5.00016 25.2748 5.00016C36.3248 5.00016 45.2749 13.9501 45.2749 25.0001C45.2749 36.05 36.3249 45.0001 25.2748 45.0001Z",
fill: color
}));
});
export default Circle;