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