0.0.20 • Published 2 months ago

@ciceksepeti/cui-checkbox v0.0.20

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@ciceksepeti/cui-checkbox

npm version storybook PRs Welcome license

Tri-state checkbox component, checked, unchecked, partially checked.

Installing

Using Npm:

$ npm install @ciceksepeti/cui-checkbox

Using Yarn:

$ yarn add @ciceksepeti/cui-checkbox

Example

import React, { useState } from "react";
import Checkbox from "@ciceksepeti/cui-checkbox";
import '@ciceksepeti/cui-checkbox/styles.css";

function Demo(props) {
  const [checked, setChecked] = useState(false);
  return (
    <Checkbox
      checked={checked}
      onChange={(event) => setChecked(event.target.checked)}
    />
  );
}
0.0.20

2 months ago

0.0.19

3 months ago

0.0.18

3 months ago

0.0.16

4 months ago

0.0.17

4 months ago

0.0.15

1 year ago

0.0.14

1 year ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.10

2 years ago

0.0.11

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.5

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago