@heycar-uikit/collapse
TypeScript icon, indicating that this package has built-in type declarations

3.0.0 • Public • Published

HeyCar-UIKit - Collapse

Tests Coverage Status Demo build Commitizen friendly

The Button component is used to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation.

Installation

To install and save in your package.json dependencies, run the command below using npm:

npm install @heycar-uikit/collapse

Usage

import Collapse from '@heycar-uikit/collapse';

function App() {
  const [isOpen, setIsOpen] = React.useState(false);
  const buttonOnClick = () => setIsOpen(!isOpen);
  return (
    <div>
      <Button fullWidth size="small" onClick={buttonOnClick}>
        CLICK ME
      </Button>
      <Collapse open={isOpen}>
        <h2>What is Lorem Ipsum?</h2>
        <p>
          Lorem Ipsum is simply dummy text of the printing and typesetting
          industry. Lorem Ipsum has been the industry's standard dummy text ever
          since the 1500s, when an unknown printer took a galley of type and
          scrambled it to make a type specimen book. It has survived not only
          five centuries, but also the leap into electronic typesetting,
          remaining essentially unchanged. It was popularised in the 1960s with
          the release of Letraset sheets containing Lorem Ipsum passages, and
          more recently with desktop publishing software like Aldus PageMaker
          including versions of Lorem Ipsum.
        </p>
      </Collapse>
    </div>
  );
}

Documentation and sandbox

Storybook documentation and sandbox

Package Sidebar

Install

npm i @heycar-uikit/collapse

Weekly Downloads

1,930

Version

3.0.0

License

UNLICENSED

Unpacked Size

101 kB

Total Files

60

Last publish

Collaborators

  • heycar-uikit