import { CircleNotch } from '@phosphor-icons/react'; interface LoadingProps { className?: string; message?: string; } export default function Loading(props: LoadingProps) { return ( // NOTE: We can display usage tips here for casual learning moments.
{props.message || "Loading" }
); } export function InlineLoading(props: LoadingProps) { return ( ) }