diff options
Diffstat (limited to 'src/components/ui/spinner.tsx')
-rw-r--r-- | src/components/ui/spinner.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/ui/spinner.tsx b/src/components/ui/spinner.tsx new file mode 100644 index 0000000..d1511ad --- /dev/null +++ b/src/components/ui/spinner.tsx @@ -0,0 +1,8 @@ +export const Spinner = ({ className }: { className?: string }) => ( + <div + className={ + "w-7 h-7 border-[3px] border-transparent border-t-primary rounded-full animate-spin" + + ` ${className}` + } + /> +); |