@manhphi1309/switch
v0.1.5
Published
A custom Switch component for the shadcn-custom monorepo.
Downloads
85
Readme
@manhphi1309/switch
A custom Switch component for the shadcn-custom monorepo.
Subcomponents
Switch
Dependencies
@manhphi1309/utilsradix-ui
Installation
npm install @manhphi1309/switchUsage Example
import { Switch } from "@manhphi1309/switch"
export default function App() {
return (
<div className="flex items-center space-x-2">
<Switch id="airplane-mode" />
<label htmlFor="airplane-mode">Airplane Mode</label>
</div>
)
}