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