@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 1.04 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var PersonTag = /*#__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: "M9 14a10 10 0 1 1 20 0 10 10 0 0 1-20 0ZM3 32.25C3 29.9 4.9 28 7.25 28H21v6.67a6 6 0 0 0 1.76 4.25l3.97 3.97A25.32 25.32 0 0 1 19 44c-4.21 0-8.15-.84-11.08-2.62C4.94 39.57 3 36.76 3 33v-.75ZM23 28v6.66a4 4 0 0 0 1.17 2.84l7.32 7.32a4 4 0 0 0 5.67 0l6.67-6.67a4 4 0 0 0 0-5.67l-7.32-7.32A4 4 0 0 0 33.67 24h-6.66A4 4 0 0 0 23 28Zm5.5 3a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3Z"
}));
});
PersonTag.displayName = 'PersonTag';
export var PersonTagDimensions = {
height: 48,
width: 48
};