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