@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 PersonPill = /*#__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: "M11.68 22c-.9-1.5-.7-3.45.58-4.74L15.53 14H6.25C5.01 14 4 15 4 16.25v.92c0 .57.18 1.13.51 1.6 1.5 2.1 3.91 3.16 7.17 3.23ZM17 7A5 5 0 1 0 7 7a5 5 0 0 0 10 0Zm.97 5.97a2.87 2.87 0 0 1 4.06 4.06l-5 5a2.87 2.87 0 0 1-4.06-4.06l5-5Zm3 1.06a1.37 1.37 0 0 0-1.94 0L17.06 16 19 17.94l1.97-1.97c.54-.54.54-1.4 0-1.94Zm-3.94 6a.75.75 0 1 0-1.06-1.06l-1 1a.75.75 0 1 0 1.06 1.06l1-1Z"
}));
});
PersonPill.displayName = 'PersonPill';
export var PersonPillDimensions = {
height: 24,
width: 24
};