import React from "react"; import { SvgProps } from "react-native-svg"; import { PolylineProps } from "react-native-svg"; export interface ArrowDownIconStyling { size?: number; thickness?: number; color?: string; rounded?: boolean; svgProps?: SvgProps; polylineProps?: PolylineProps; } export default function ArrowDownIcon({ size: s, thickness, color, rounded, svgProps, polylineProps, }: ArrowDownIconStyling): React.JSX.Element; //# sourceMappingURL=ArrowDownIcon.d.ts.map