hextastudio/ui needs your support to stay running 🫶 Help us
Checkbox
Checkboxes allow the user to select one or more items from a set.
Preview
Installation
tsx
import { useState } from "react";
export const Home = () => {
const [checked, setChecked] = useState(false);
return (
<>
<Checkbox
checked={checked}
onChange={(e) => setChecked(e.target.checked)}
Props Information
Prop Name
Prop Type
Default Value
Description
Prop Name | Prop Type | Default Value | Description |
---|