UNPKG

onecart-ui

Version:

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

11 lines (10 loc) 1.32 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const BrowserUpdated = ({ 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 13.000V16.000C22.000 17.100 21.100 18.000 20.000 18.000H17.000L18.000 19.000V21.000H6.000V19.000L7.000 18.000H4.000C2.900 18.000 2.000 17.100 2.000 16.000V5.000C2.000 3.900 2.900 3.000 4.000 3.000H12.000V5.000H4.000V16.000H20.000V13.000H22.000ZM15.000 15.000L10.000 10.000L11.410 8.590L14.000 11.170V3.000H16.000V11.170L18.590 8.590L20.000 10.000L15.000 15.000Z", fill: color }), React.createElement(Path, { d: "M6.706 20.118V20.824C6.706 21.082 6.494 21.294 6.235 21.294H5.529L5.765 21.529V22.000H2.941V21.529L3.176 21.294H2.471C2.212 21.294 2.000 21.082 2.000 20.824V18.235C2.000 17.976 2.212 17.765 2.471 17.765H4.353V18.235H2.471V20.824H6.235V20.118H6.706ZM5.059 20.588L3.882 19.412L4.214 19.080L4.824 19.687V17.765H5.294V19.687L5.904 19.080L6.235 19.412L5.059 20.588Z", fill: color }))); }; BrowserUpdated.displayName = 'BrowserUpdated';