import { Component } from "solid-js"; export const LoadingCircle: Component<{ status: "loading" | "complete"; class?: string; }> = (props) => { switch (props.status) { case "loading": return ( ); case "complete": return ( ); } };