consolidation

This commit is contained in:
Michael Freno
2026-01-06 13:51:47 -05:00
parent 133800f2e3
commit a11f1fee50
11 changed files with 106 additions and 116 deletions

View File

@@ -27,15 +27,3 @@ export function SkeletonText(props: SkeletonProps) {
</div>
);
}
export function SkeletonCircle(props: SkeletonProps) {
return (
<div
class={`bg-surface0 flex items-center justify-center rounded-full ${props.class || ""}`}
aria-label="Loading..."
role="status"
>
<Spinner size="md" />
</div>
);
}