@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
7 lines (6 loc) • 450 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
import Svg, { Polyline } from 'react-native-svg';
const IconChevronUp = ({ size, color, strokeWidth, style, }) => {
return (_jsx(Svg, { width: size, height: size, viewBox: "0 0 24 24", fill: "none", style: style, children: _jsx(Polyline, { points: "6 15 12 9 18 15", stroke: color, strokeWidth: strokeWidth, strokeLinecap: "round", strokeLinejoin: "round" }) }));
};
export default IconChevronUp;