ignore folder
This commit is contained in:
8
components/ui/Spinner.tsx
Normal file
8
components/ui/Spinner.tsx
Normal file
@ -0,0 +1,8 @@
|
||||
export default function Spinner({ label = "Loading..." }: { label?: string }) {
|
||||
return (
|
||||
<div className="d-flex align-items-center gap-2">
|
||||
<div className="spinner-border spinner-border-sm text-primary" role="status" />
|
||||
<span className="text-muted">{label}</span>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user