Components
Loading preview...
Pull down to change theme
npx shadcn@latest add https://21st.dev/r/oldkong88/light-pull-theme-switcherimport { LightPullThemeSwitcher } from "@/components/ui/light-pull-theme-switcher"
export function Demo(){
return(
<div className="flex flex-col items-center">
<LightPullThemeSwitcher/>
<p className="text-sm text-neutral-500">Pull down to change theme</p>
</div>
)
}