@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
17 lines (15 loc) • 812 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const PersonFilled = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 32 32",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
d: "M16 16.0009C20.4188 16.0009 24 12.4189 24 8.00047C24 3.58208 20.4188 0 16 0C11.5813 0 8 3.58208 8 8.00047C8 12.4189 11.5813 16.0009 16 16.0009ZM19.1688 19.0011H12.8313C6.85063 19.0011 2 23.8514 2 29.833C2 31.0293 2.97 32 4.16625 32H27.835C29.0312 32.0019 30 31.0331 30 29.833C30 23.8514 25.15 19.0011 19.1688 19.0011Z"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(PersonFilled);
export default ForwardRef;