Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rmwc/checkbox

Package Overview
Dependencies
Maintainers
1
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rmwc/checkbox

RMWC Checkbox component

  • 14.2.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5.3K
increased by18.6%
Maintainers
1
Weekly downloads
 
Created
Source

Checkboxes

Checkboxes allow the user to select multiple options from a set.

  • Module @rmwc/checkbox
  • Import styles:
    • Using CSS Loader
      • import '@rmwc/checkbox/styles';
    • Or include stylesheets
      • '@material/checkbox/dist/mdc.checkbox.css'
      • '@material/form-field/dist/mdc.form-field.css'
      • '@material/ripple/dist/mdc.ripple.css'
  • MDC Docs: https://material.io/develop/web/components/input-controls/checkboxes/
function Example() {
  const [checked, setChecked] = React.useState(false);
  return (
    <Checkbox
      label="Cookies"
      checked={checked}
      onChange={(evt) => setChecked(!!evt.currentTarget.checked)}
    />
  );
}
<Checkbox label="Pizza" />
<Checkbox>Icecream</Checkbox>
<>
  <Checkbox label="Broccoli" indeterminate />

  <Checkbox label="Always On" checked />
  <Checkbox label="Always Off" checked={false} />
</>

Checkbox

A Checkbox component.

Props

NameTypeDescription
checkedbooleanToggle the control on and off.
disabledbooleanDisables the control.
foundationRefRef<MDCCheckboxFoundation<>>Advanced: A reference to the MDCFoundation.
idstringA DOM ID for the toggle.
indeterminatebooleanMake the control indeterminate
inputRefRef<HTMLInputElement<>>A reference to the native input.
labelReactNodeA label for the control.
rippleRipplePropTAdds a ripple effect to the component
rootPropsHTMLProps<any>By default, all props except className and style spread to the input. These are additional props for the root of the checkbox.
valuestring | number | string[]The value of the control.

Keywords

FAQs

Package last updated on 17 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc