onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 1.41 kB
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const GroupRemove = ({ 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: "M22.000 7.833V11.167H15.333V9.500H20.333ZM8.667 3.667C6.825 3.667 5.333 5.158 5.333 7.000C5.333 8.842 6.825 10.333 8.667 10.333C10.508 10.333 12.000 8.842 12.000 7.000C12.000 5.158 10.508 3.667 8.667 3.667ZM8.667 8.667C7.750 8.667 7.000 7.917 7.000 7.000C7.000 6.083 7.750 5.333 8.667 5.333C9.583 5.333 10.333 6.083 10.333 7.000C10.333 7.917 9.583 8.667 8.667 8.667ZM8.667 11.167C6.442 11.167 2.000 12.283 2.000 14.500V18.667H13.667V16.167C13.667 13.950 9.225 12.833 7.000 12.833ZM12.000 17.000H2.000V16.175C2.167 15.575 4.750 14.500 7.000 14.500C9.250 14.500 11.833 15.575 12.000 16.167V15.333ZM12.425 3.708C13.192 4.592 13.667 5.742 13.667 7.000C13.667 8.258 13.192 9.408 12.425 10.292C14.058 10.083 15.333 8.700 15.333 7.000C15.333 5.300 14.058 3.917 12.425 3.708ZM15.775 11.858C16.517 12.550 17.000 13.417 17.000 14.500V18.667H17.000V16.167C17.000 14.958 15.675 14.075 14.108 13.525Z", fill: color })));
};
GroupRemove.displayName = 'GroupRemove';