1.0.3 • Published 4 years ago
summary-details v1.0.3
summary-details
React component for extra content Typescript version
How to install
Below are ways to install the library using npm or yarn:
npm i summary-details
# ou
yarn add summary-detailsHow to use default component
import CollapseDetails from "summary-details";
<CollapseDetails summary="Lorem ipsum dolor sit">
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minima voluptates
obcaecati
</p>
</CollapseDetails>;How to use custom props component
import CollapseDetails from "summary-details";
<CollapseDetails
summary="Lorem ipsum dolor sit"
width="60rem"
bgColor="red"
bgHover="blue"
color="yellow"
colorHover="pink"
borderRadius="1em"
>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Minima voluptates
obcaecati
</p>
</CollapseDetails>;Properties
This component is an abstraction of a collapse, but using native HTML properties.
| Props | type | required | Description |
|---|---|---|---|
| width | string | ||
| summary | string | X | |
| children | element | X | |
| bgColor | string | Background color of summary | |
| bgHover | string | Background color hover of summary | |
| color | string | Color of summary | |
| colorHover | string | Color hover of summary | |
| borderRadius | string | Border radius of summary | |
| border | string | Border of summary | |
| styleDetailsContent | string | Class to style the content |