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