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