onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 970 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const AcUnit = ({ 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 11.000H17.830L21.070 7.760L19.660 6.340L15.000 11.000H13.000V9.000L17.660 4.340L16.240 2.930L13.000 6.170V2.000H11.000V6.170L7.760 2.930L6.340 4.340L11.000 9.000V11.000H9.000L4.340 6.340L2.930 7.760L6.170 11.000H2.000V13.000H6.170L2.930 16.240L4.340 17.660L9.000 13.000H11.000V15.000L6.340 19.660L7.760 21.070L11.000 17.830V22.000H13.000V17.830L16.240 21.070L17.660 19.660L13.000 15.000V13.000H15.000L19.660 17.660L21.070 16.240L17.830 13.000H22.000V11.000Z", fill: color })));
};
AcUnit.displayName = 'AcUnit';