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