import * as React from 'react'; export interface DownArrow32Props extends React.SVGProps { ariaLabel?: string } export default function DownArrow32({ ariaLabel, ...props }: DownArrow32Props) { return ( ); }