UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.23 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const Abc = ({ 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: "M20.333 10.889H18.667V10.333H16.444V13.667H18.667V13.111H20.333V14.222C20.333 14.833 19.833 15.333 19.222 15.333H15.889C16.944 13.667 16.444 13.167 16.444 12.556V9.778C14.778 9.167 15.278 8.667 15.889 8.667H19.222C21.500 7.000 22.000 7.500 22.000 8.111V10.889ZM5.889 9.778V13.667H5.889V12.000H3.667V13.667H2.000V8.111C2.000 7.500 2.500 7.000 3.111 7.000H6.444C5.389 8.667 5.889 9.167 5.889 9.778ZM4.222 10.333H2.000V12.000H4.222V10.333ZM12.000 12.000C12.611 12.000 13.111 12.500 13.111 13.111V12.556C14.778 13.167 14.278 13.667 13.667 13.667H9.222V7.000H13.667C12.611 8.667 13.111 9.167 13.111 9.778V9.222C14.778 9.833 14.278 10.333 13.667 10.333ZM10.889 8.667V11.167H11.444V10.333H9.222ZM13.111 11.167H10.889V12.000H13.111V11.167Z", fill: color }))); }; Abc.displayName = 'Abc';