0.2.0 • Published 1 year ago

@logo-rn/logo-checkbox-list v0.2.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
1 year ago

@logo-rn/logo-checkbox-list

allows user to select one or more items from a set or turn the options on or off.

npm version

Installation

Install the component:

npm i @logo-rn/logo-checkbox-list -s

Usage

Once installed, import the component in your application:

import {LogoCheckboxList} from '@logo-rn/logo-checkbox-list';
 const items = [
   { text: "deneme1", value: "value1", enabled: true, selected: true },
   { text: "deneme2", value: "value2", enabled: true, selected: false },
   { text: "deneme3", value: "value3", enabled: true, selected: false }
 ];
 //...
 <LogoCheckboxList items={items} />

For more detailed information, please visit:

Logo Elements Documentation ↗