summaryrefslogtreecommitdiff
path: root/src/components/ui/spinner.tsx
blob: d1511ade7e4c917c26068945c28a0051115946d6 (plain)
1
2
3
4
5
6
7
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}`
    }
  />
);