logo

Lumina Design

ComponentsIcons
Installation
AccordionAppHeaderAutoCompleteAvatarBottomNavigationBreadcrumbButtonCarouselCheckboxChipColumnDataTableDatePickerDialogFloatingButtonFloatingMenuInputFieldLinkMenuDropdownNextToastProviderProgressRadioButtonRangeSliderResizablePanelSelectDropDownSideBarTabSelectTabsTagTextTextAreaThemeProviderToastProviderToggleInputToggleSwitchTooltip

Checkbox

The Checkbox component is a form element that allows users to select one or more options from a set. It is commonly used in scenarios where multiple selections are allowed, such as filters on an e-commerce site (e.g., selecting multiple brands) or in survey forms where users can choose all applicable answers. Checkboxes are essential for creating user-friendly forms that require clear and easy selection mechanisms.

Apple Juice
Orange Juice
Mixed Fruit Juice

Code

import Checkbox from "@lumina-design/core/Checkbox";
    
<Checkbox
  name="options"
  className="dummy-checkbox"
  onChange={(value) => toggleCheckbox1(value)}
  checked={checkboxFlag1}
  label="IceCream IceCream IceCream IceCream"
></Checkbox>