blob: ee9328c66766f5431f64b2e96372251b1483e343 (
plain)
1
2
3
4
5
6
7
8
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>
)
}
|