UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 815 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const Warehouse = ({ 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.947 7.632V19.895H17.789V11.474H5.158V19.895H3.053V8.684L11.474 5.316L19.895 8.684ZM22.000 22.000V6.211L12.526 2.000L2.000 6.211V22.000H7.263V13.579H15.684V22.000H22.000ZM11.474 18.842H9.368V20.947H11.474V18.842ZM13.579 15.684H11.474V17.789H13.579V15.684ZM15.684 18.842H13.579V20.947H15.684V18.842Z", fill: color }))); }; Warehouse.displayName = 'Warehouse';