UNPKG

onecart-ui

Version:

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

10 lines (9 loc) 614 B
import React from 'react'; import { Svg, Path } from 'react-native-svg'; export const East = ({ 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: "M17.294 2.000L15.635 3.659L21.024 9.059H2.000V11.412H21.024L12.094 20.341L13.765 22.000L22.000 13.765L13.765 5.529Z", fill: color }))); }; East.displayName = 'East';