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