@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.12 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var PersonStar = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M24 4a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM12.25 28A4.25 4.25 0 0 0 8 32.25V33c0 3.76 1.94 6.57 4.92 8.38C15.85 43.16 19.79 44 24 44c.53 0 1.06-.01 1.58-.04A12.96 12.96 0 0 1 24.04 28H12.25ZM46 35a11 11 0 1 1-22 0 11 11 0 0 1 22 0Zm-9.81-6.6c-.37-1.2-2-1.2-2.38 0l-1.2 3.83h-3.86c-1.2 0-1.71 1.62-.73 2.36l3.12 2.37-1.2 3.83c-.37 1.2.95 2.2 1.94 1.45L35 39.88l3.12 2.36c.99.75 2.3-.25 1.93-1.45l-1.2-3.83 3.13-2.37c.98-.74.48-2.36-.73-2.36h-3.87L36.2 28.4Z"
}));
});
PersonStar.displayName = 'PersonStar';
export var PersonStarDimensions = {
height: 48,
width: 48
};