npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@licuido-ui/ui_checkbox

v4.0.2

Published

Checkboxes allow the user to select one or more items from a set.

Readme

CheckBox

Checkboxes allow the user to select one or more items from a set.

Checkboxes can be used to turn an option on or off.

If you have multiple options appearing in a list, you can preserve space by using checkboxes instead of on/off switches. If you have a single option, avoid using a checkbox and use an on/off switch instead.

Author

Link

Story Book Link CheckBox

PlayGround

Try it have a fun codeBox

Installation

npm i @licuido-ui/ui_checkbox

Import component

import { Checkbox } from '@licuido-ui/ui_checkbox';

Usage

<Checkbox checked={true} />

Image

alt text

Sample Code

<Checkbox 
    id={''}
    checked={false}
    className={''}
    sx={{}}
    name={''}
    label={null}
    indeterminate={false}
    onChange={console.log}
    checkBoxStyle={{}}
    startIcon={}
/>

Props

| Name | Description | Default | Control | | -------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------- | ----------------------- | | className | string | "" | | sx | The system prop that allows defining system overrides as well as additional CSS styles.SxProps<Theme> | { } | RAWsx : {} | | name | Name attribute of the input element.string | "" | | checked | If true, the component is checked.boolean | false | False or True | | indeterminate | If true, the component appears indeterminate. This does not set the native input element to indeterminate due to inconsistent behavior across browsers. | | However, we set a data-indeterminate attribute on the input.boolean | false | False or True | | onChange | Callback fired when the state is changed | Function | - | | checkBoxStyle | SxProps<{}> | { } | RAWcheckBoxStyle : {} | | action | A ref for imperative actions. | | It currently only supports focusVisible() action.Ref<ButtonBaseActions> | - | Set object | | centerRipple | If true, the ripples are centered. | | They won't start at the cursor interaction position.boolean | false | Set boolean | | disableTouchRipple | If true, the touch ripple effect is disabled.boolean | false | Set boolean | | focusRipple | If true, the base button will have a keyboard focus ripple.boolean | false | Set boolean | | focusVisibleClassName | This prop can help identify which element has keyboard focus. The class name will be applied when the element gains the focus through keyboard interaction It's a polyfill for the CSS :focus-visible selector. The rationale for using this feature is explained here. A polyfill can be used to apply a focus-visible class to other components if needed.string | - | Set string | | LinkComponent | The component used to render a link when the href prop is provided.ElementType<any> | 'a' | Set object | | onFocusVisible | Callback fired when the component is focused with a keyboard. | | We trigger a onFocus callback too.FocusEventHandler<any> | - | Function | | TouchRippleProps | Props applied to the TouchRipple element.Partial<TouchRippleProps> | - | Set object | | touchRippleRef | A ref that points to the TouchRipple element.Ref<TouchRippleActions> | - | Set object |