@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
7 lines (6 loc) • 630 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import Svg, { Circle, Path } from 'react-native-svg';
const IconPerson = ({ size, color, strokeWidth, style, }) => {
return (_jsxs(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", style: style, children: [_jsx(Circle, { cx: "12", cy: "8", r: "4", fill: strokeWidth ? 'none' : color, stroke: strokeWidth ? color : 'none', strokeWidth: strokeWidth }), _jsx(Path, { d: "M4 20c0-4 4-6 8-6s8 2 8 6v1H4v-1z", fill: strokeWidth ? 'none' : color, stroke: strokeWidth ? color : 'none', strokeWidth: strokeWidth })] }));
};
export default IconPerson;