import React from "react"; import Svg, { Linecap, Linejoin, Polyline, SvgProps } from "react-native-svg"; import { PolylineProps } from "react-native-svg"; import { Text } from "react-native"; export interface ArrowDownIconStyling { size?: number; thickness?: number; color?: string; rounded?: boolean; svgProps?: SvgProps; polylineProps?: PolylineProps; } export default function ArrowDownIcon({ size: s = 24, thickness = s / 16, color = "black", rounded = false, svgProps = {}, polylineProps = {}, }: ArrowDownIconStyling) { const roundedCorners = rounded ? { strokeLinecap: "round" as Linecap, strokeLinejoin: "round" as Linejoin } : {}; // return ; return ( ); }