react-native-expo-bottomsheet
Version:
A lightWeight and customizeble bottom sheet components for React Native Expo support. Includes Smooth animation
11 lines (10 loc) • 575 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
import { verticalScale } from "../../../utils/styling";
const chevronUpArrow = (props) => (<Svg width={verticalScale(40)} height={verticalScale(24)} viewBox="0 0 24 24" fill="none" stroke="#4C4C4C" strokeWidth={3} strokeLinecap="round" strokeLinejoin="round"
// className="icon icon-tabler icons-tabler-outline icon-tabler-chevron-compact-up"
{...props}>
<Path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<Path d="M4 13l8 -3l8 3"/>
</Svg>);
export default React.memo(chevronUpArrow);