UNPKG

onecart-ui

Version:

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

11 lines (10 loc) 852 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const SwitchLeft = ({ 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: "M5.889 8.244V13.533L4.356 9.778L8.111 6.022ZM9.778 2.000L2.000 9.778L9.778 17.556V4.222ZM12.000 4.222V17.556L22.000 9.778L14.222 2.000Z", fill: color }), React.createElement(Path, { d: "M2.000 20.724V21.054L2.554 20.170L3.438 19.286ZM3.830 18.340L2.000 20.170L3.830 22.000V19.778ZM3.438 19.778V22.000L6.706 20.170L4.876 18.340Z", fill: color }))); }; SwitchLeft.displayName = 'SwitchLeft';