@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 774 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var CircleLine = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M4.06 11h15.88a8 8 0 0 0-15.88 0zm15.88 2H4.06a8 8 0 0 0 15.88 0zM2 12a10 10 0 1 1 20 0 10 10 0 0 1-20 0z"
}));
});
CircleLine.displayName = 'CircleLine';
export var CircleLineDimensions = {
height: 24,
width: 24
};