UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 859 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const Apps = ({ 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: "M2.000 7.000H7.000V2.000H2.000V7.000ZM9.500 22.000H14.500V17.000H9.500V22.000ZM2.000 22.000H7.000V17.000H2.000V22.000ZM2.000 14.500H7.000V9.500H2.000V14.500ZM9.500 14.500H14.500V9.500H9.500V14.500ZM17.000 2.000V7.000H22.000V2.000H17.000ZM9.500 7.000H14.500V2.000H9.500V7.000ZM17.000 14.500H22.000V9.500H17.000V14.500ZM17.000 22.000H22.000V17.000H17.000V22.000Z", fill: color }))); }; Apps.displayName = 'Apps';