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