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