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