@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 894 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var PersonStanding = /*#__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 16 16"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 4.5a1.75 1.75 0 1 0 0-3.5 1.75 1.75 0 0 0 0 3.5Zm3.5 2v3a1 1 0 0 1-1 1V14a1 1 0 0 1-2 0v-3a.5.5 0 0 0-1 0v3a1 1 0 0 1-2 0v-3.5a1 1 0 0 1-1-1v-3a2 2 0 0 1 1.46-1.92 2.74 2.74 0 0 0 4.08 0A2 2 0 0 1 11 6.5Z"
}));
});
PersonStanding.displayName = 'PersonStanding';
export var PersonStandingDimensions = {
height: 16,
width: 16
};