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