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