UNPKG

onecart-ui

Version:

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

15 lines (14 loc) 2.17 kB
import React from 'react'; export const GroupAdd = ({ size = 'md', color = 'currentColor', className, 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", xmlns: "http://www.w3.org/2000/svg", className: className, style: style }, React.createElement("path", { d: "M2.000 2.000C4.329 4.684 5.772 8.177 5.772 12.000C5.772 15.823 4.329 19.316 2.000 22.000C6.962 21.367 10.835 17.165 10.835 12.000C10.835 6.835 6.962 2.633 2.000 2.000Z", fill: color }), React.createElement("path", { d: "M12.000 22.000C17.525 22.000 22.000 17.525 22.000 12.000C22.000 6.475 17.525 2.000 12.000 2.000C6.475 2.000 2.000 6.475 2.000 12.000C2.000 17.525 6.475 22.000 12.000 22.000ZM12.000 7.000C14.750 7.000 17.000 9.250 17.000 12.000C17.000 14.750 14.750 17.000 12.000 17.000C9.250 17.000 7.000 14.750 7.000 12.000C7.000 9.250 9.250 7.000 12.000 7.000Z", fill: color }), React.createElement("path", { d: "M10.000 13.000C7.330 13.000 2.000 14.340 2.000 17.000V22.000H16.000V19.000C16.000 16.340 10.670 15.000 8.000 15.000ZM14.000 20.000H2.000V19.010C2.200 18.290 5.300 17.000 8.000 17.000C10.700 17.000 13.800 18.290 14.000 19.000V18.000Z", fill: color }), React.createElement("path", { d: "M10.751 2.000C13.636 4.690 15.516 8.062 15.516 12.276V22.000H21.999V12.276C21.999 7.575 16.845 4.139 10.751 2.000Z", fill: color }), React.createElement("path", { d: "M22.000 2.000V2.000H16.667V4.667H14.000V7.333H16.667V10.000H19.333V7.333H22.000V4.667H19.333Z", fill: color }), React.createElement("path", { d: "M2.000 22.000V19.895H2.702V20.596H2.000V21.298H2.702V22.000H3.404V21.298H4.105V20.596H3.404Z", fill: color }), React.createElement("path", { d: "M3.860 19.907C3.240 19.907 2.000 20.219 2.000 20.837V22.000H5.256V21.302C5.256 20.684 4.016 20.372 3.395 20.372ZM4.791 21.535H2.000V21.305C2.047 21.137 2.767 20.837 3.395 20.837C4.023 20.837 4.744 21.137 4.791 21.302V21.070Z", fill: color }))); }; GroupAdd.displayName = 'GroupAdd';