Sha256: 0ee61d4e54ac9ace8b54b10246412b56b681c1a4a79512616ff7441bb238254e

Contents?: true

Size: 710 Bytes

Versions: 1919

Compression:

Stored size: 710 Bytes

Contents

import React, { useState } from 'react'

import Checkbox from '../_checkbox'

const CheckboxCustom = (props) => {
  const [checked, setChecked] = useState(false)

  const handleOnChange = () => {
    setChecked(!checked)
  }

  return (
    <div>
      {`The checkbox is ${checked ? 'checked' : 'unchecked'}.`}
      <br />
      <br />
      <div>
        <Checkbox
            text="Toggle Me"
            {...props}
        >
          <input
              checked={checked}
              name="custom-name"
              onChange={handleOnChange}
              type="checkbox"
              value="custom-value"
          />
        </Checkbox>
      </div>
    </div>
  )
}

export default CheckboxCustom

Version data entries

1,919 entries across 1,919 versions & 2 rubygems

Version Path
playbook_ui_docs-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5340 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5340 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5339 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.11.1.pre.alpha.PLAY1750pbcontenttagkitbutton5339 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.12.0.pre.rc.3 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.12.0.pre.rc.3 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.12.0.pre.rc.2 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.12.0.pre.rc.2 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.12.0.pre.rc.1 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.12.0.pre.rc.1 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.12.0.pre.rc.0 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.12.0.pre.rc.0 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5315 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5315 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5314 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.10.0.pre.alpha.PLAY1774timelinelabelstepspacing5314 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.10.0.pre.alpha.PLAY1750pbcontenttagkitbutton5308 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.10.0.pre.alpha.PLAY1750pbcontenttagkitbutton5308 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui-14.11.1 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx
playbook_ui_docs-14.11.0.pre.rc.17 app/pb_kits/playbook/pb_checkbox/docs/_checkbox_custom.jsx