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