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