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