1.0.0 • Published 1 year ago

@weave-design/checkbox v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Checkbox

Checkboxes provide a control to select from a list of non-exclusive options.

Getting started

Install the package

yarn add @weave-design/checkbox @weave-design/theme-context @weave-design/theme-data

Import the component

import Checkbox from '@weave-design/checkbox';

Basic usage

<Checkbox />

Styling

Use the className prop to pass in a css class name to the outermost container of the component. The class name will also pass down to most of the other styled elements within the component.

Checkbox also has a stylesheet prop that accepts a function wherein you can modify its styles. For instance:

import Checkbox from '@weave-design/checkbox';

function YourComponent() {
  // ...
  const customStylesheet = (styles, props, themeData) => ({
    ...styles,
    checkboxWrapper: {
      ...styles.checkboxWrapper,
      color: themeData["colorScheme.status.error"]
    },
    checkboxInput: {
      ...styles.checkboxInput,
      opacity: 1
    },
    checkboxCheck: {
      ...styles.checkboxCheck,
      padding: `4px`
    },
    checkboxCheckWrapper: {
      ...styles.checkboxCheckWrapper,
      position: `static`
    },
    checkboxIndeterminate: {
      ...styles.checkboxIndeterminate,
      margin: `10px`
    }
  });

  return (
    <Checkbox stylesheet={customStylesheet} />
  );
}