Skip to content

Loading

Loading renders Falcon’s legacy spinner with optional text and compact inline presentation.

Code
import { Loading } from "@falcon/ui-kit/dist/legacy";
export function Example() {
return <Loading />;
}
Code
import { Loading } from "@falcon/ui-kit/dist/legacy";
export function Example() {
return (
<div className="tw:w-fit">
<Loading inline small />
</div>
);
}
className?: string
hideText?: boolean
inline?: boolean
label?: string = "Loading..."
small?: boolean