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