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