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