onecart-ui
Version:
OneCart UI: Cross-platform design tokens + React & React Native components
10 lines (9 loc) • 608 B
JavaScript
import React from 'react';
import { Svg, Path } from 'react-native-svg';
export const ExpandMore = ({ 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: "M19.650 2.000L12.000 9.633L4.350 2.000L2.000 4.350L12.000 14.350L22.000 4.350L19.650 2.000Z", fill: color })));
};
ExpandMore.displayName = 'ExpandMore';