UNPKG

onecart-ui

Version:

OneCart UI: Cross-platform design tokens + React & React Native components

10 lines (9 loc) 943 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const Male = ({ size = 'md', color = 'currentColor', style, }) => { const sizeMap = { xs: 16, sm: 20, md: 24, lg: 32, xl: 40 }; const iconSize = typeof size === 'number' ? size : sizeMap[size]; return (React.createElement(Svg, { width: iconSize, height: iconSize, viewBox: "0 0 24 24", fill: "none", style: style }, React.createElement(Path, { d: "M9.857 7.114C12.614 7.114 14.857 9.357 14.857 12.114C14.857 14.871 12.614 17.114 9.857 17.114C7.100 17.114 4.857 14.871 4.857 12.114C4.857 9.357 7.100 7.114 9.857 7.114ZM9.857 4.257C5.514 4.257 2.000 7.771 2.000 12.114C2.000 16.457 5.514 19.971 9.857 19.971C14.200 19.971 17.714 16.457 17.714 12.114C17.714 10.457 17.200 8.929 16.329 7.657L22.000 2.000V10.571H19.971V2.000H11.400V4.857H15.086L14.300 5.643C13.043 4.771 11.514 4.257 9.857 4.257Z", fill: color }))); }; Male.displayName = 'Male';