Components
npx shadcn@latest add https://21st.dev/r/ShadcnStudio/switch-1Loading preview...
import { useId } from 'react'
import { DatabaseIcon } from 'lucide-react'
import { Label } from '@/components/ui/label'
import { Switch } from '@/components/ui/switch'
const SwitchCardDemo = () => {
const id = useId()
return (
<div className='border-input has-data-[state=checked]:border-primary/50 relative flex w-full items-start gap-2 rounded-md border p-4 shadow-xs outline-none'>
<Switch
id={id}
className='order-1 h-4 w-6 after:absolute after:inset-0 [&_span]:size-3 data-[state=checked]:[&_span]:translate-x-2.5 data-[state=checked]:[&_span]:rtl:-translate-x-2.5'
aria-describedby={`${id}-description`}
/>
<div className='flex grow items-center gap-3'>
<DatabaseIcon />
<div className='grid grow gap-2'>
<Label htmlFor={id}>Backup</Label>
<p id={`${id}-description`} className='text-muted-foreground text-xs'>
Backup every file from your project.
</p>
</div>
</div>
</div>
)
}
export default SwitchCardDemo
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...