UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 1.38 kB
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const LocalGasStation = ({ 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.633 6.700L20.644 6.689L16.511 2.556L15.333 3.733L17.678 6.078C16.633 6.478 15.889 7.478 15.889 8.667C15.889 10.200 17.133 11.444 18.667 11.444C19.067 11.444 19.433 11.356 19.778 11.211V19.222C19.778 19.833 19.278 20.333 18.667 20.333C18.056 20.333 17.556 19.833 17.556 19.222V14.222C17.556 13.000 16.556 12.000 15.333 12.000H14.222V4.222C14.222 3.000 13.222 2.000 12.000 2.000H5.333C4.111 2.000 3.111 3.000 3.111 4.222V22.000H14.222V13.667H15.889V19.222C15.889 20.756 17.133 22.000 18.667 22.000C20.200 22.000 21.444 20.756 21.444 19.222V8.667C21.444 7.900 21.133 7.200 20.633 6.700ZM12.000 13.667V19.778H5.333V12.000H12.000V13.667ZM12.000 9.778H5.333V4.222H12.000V9.778ZM18.667 9.778C18.056 9.778 17.556 9.278 17.556 8.667C17.556 8.056 18.056 7.556 18.667 7.556C19.278 7.556 19.778 8.056 19.778 8.667C19.778 9.278 19.278 9.778 18.667 9.778Z", fill: color }))); }; LocalGasStation.displayName = 'LocalGasStation';