import * as React from 'react' import { StyleProp, ViewStyle } from 'react-native' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' import { getSizing } from '../styles/accessibility' interface Props { color?: string height?: number strokeWidth?: number style?: StyleProp } export default function DownArrowIcon({ height, color = colors.contentPrimary, strokeWidth = 1, style = {}, }: Props) { return ( ) }