@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 875 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var PersonCircle = /*#__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 32 32"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16 2a14 14 0 1 0 0 28 14 14 0 0 0 0-28Zm0 22.5c-3.87 0-7-2.43-7-6.07A2.43 2.43 0 0 1 11.43 16h9.14A2.43 2.43 0 0 1 23 18.43c0 3.64-3.13 6.07-7 6.07Zm0-10A3.75 3.75 0 1 1 16 7a3.75 3.75 0 0 1 0 7.5Z"
}));
});
PersonCircle.displayName = 'PersonCircle';
export var PersonCircleDimensions = {
height: 32,
width: 32
};