First Release v1.0.0
Deploy to Azure Static Web Apps / build_and_deploy (push) Waiting to run
Deploy to Azure Static Web Apps / close_pull_request (push) Waiting to run

This commit is contained in:
Daniel Krähenbühl
2026-06-16 21:52:55 +02:00
commit 4f304b8ed4
297 changed files with 32673 additions and 0 deletions
@@ -0,0 +1,20 @@
import { cva, type VariantProps } from 'class-variance-authority';
export const skeletonVariants = cva('bg-secondary', {
variants: {
variant: {
default: 'rounded-md',
circular: 'rounded-full',
text: 'rounded h-4',
},
animated: {
true: 'animate-pulse',
},
},
defaultVariants: {
variant: 'default',
animated: true,
},
});
export type SkeletonVariants = VariantProps<typeof skeletonVariants>;