UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.34 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const NoLuggage = ({ 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: "M15.586 13.431L14.130 11.976V8.793H16.178V12.839ZM19.846 22.000L18.050 20.205C17.779 20.350 17.478 20.438 17.148 20.438C17.148 20.971 16.711 21.408 16.178 21.408C15.644 21.408 15.207 20.971 15.207 20.438H9.385C8.793 21.563 8.356 22.000 7.822 22.000C7.289 22.000 6.852 21.563 6.852 21.030C5.785 21.030 4.911 20.156 4.911 19.089V7.822C5.503 7.774 5.523 7.725 5.523 7.677L2.000 4.154L3.368 2.786L21.204 20.622L19.846 22.000ZM16.343 18.497L13.024 15.178V18.118H10.976V14.314L9.278 12.616V17.526H8.414V10.569L7.444 9.598V19.089H15.751ZM13.024 8.793H12.131L12.432 10.278V8.793ZM19.089 7.822V16.343L16.556 14.402V7.822H11.161L9.608 7.454L8.793 6.639V5.882V3.562C8.793 3.029 9.230 2.592 9.763 2.592H13.645C14.770 2.000 15.207 2.437 15.207 2.970V6.474H16.556C18.215 5.882 19.089 6.755 19.089 7.822ZM10.840 5.882H13.752V3.456H10.840V5.882Z", fill: color }))); }; NoLuggage.displayName = 'NoLuggage';