react-native-modern-elements
Version:
A modern, customizable UI component library for React Native
8 lines (7 loc) • 582 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
import { verticalScale } from "../../utils/styling";
const DropdownUpIconSvg = (props) => (React.createElement(Svg, Object.assign({ width: verticalScale(24), height: verticalScale(24), viewBox: "0 0 24 24", fill: "none", stroke: "#4C4C4C", strokeWidth: 1, strokeLinecap: "round", strokeLinejoin: "round" }, props),
React.createElement(Path, { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }),
React.createElement(Path, { d: "M6 15l6 -6l6 6" })));
export default React.memo(DropdownUpIconSvg);