import clsx from 'clsx'; import type { HTMLProps } from 'react'; type Props = HTMLProps & { readonly isOnline: boolean; }; // eslint-disable-next-line unicorn/no-keyword-prefix export default function StatusCircle({ isOnline, className }: Props) { return ( ); }