diff options
Diffstat (limited to 'components/panda.tsx')
| -rw-r--r-- | components/panda.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/components/panda.tsx b/components/panda.tsx new file mode 100644 index 0000000..ee9328c --- /dev/null +++ b/components/panda.tsx @@ -0,0 +1,9 @@ +export function Panda() { + return ( + <label className="text-sm text-muted-foreground/60 transition-colors hover:text-foreground cursor-pointer select-none"> + <input type="checkbox" className="peer sr-only" /> + <span className="peer-checked:hidden">ʕっ•ᴥ•ʔっ</span> + <span className="hidden peer-checked:inline">ʕ•ᴥ•ʔ</span> + </label> + ) +} |
