@heycar-uikit/collapse
v3.0.0
Published
HeyCar-UIKit Collapse
Downloads
4
Maintainers
Readme
HeyCar-UIKit - Collapse
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