A Collapsible Paragraph Component for Reactjs
Customizable expan/collapse handler
yarn add react-collapsible-paragraph
# or
npm install react-collapsible-paragraph
import React from "react";
import Collapsible from "react-collapsible-paragraph";
function App() {
return (
<div style={{ lineHeight: "22px" }}>
<Collapsible lines={2}>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
commodo consequat.
</Collapsible>
</div>
);
}
Collapsible
inherits its parentElement'slineHeight
which is necessay for the collapse mechanism. Therefore, parent must providelineHeight
property
Props | Types | Expanation | Default |
---|---|---|---|
lines |
number |
If the content is longer than a certain line number. The content can be collapsed | 2 |
locales |
{expand: string; collapse: string} |
Locale for expan/collapse handler based on controlled usage | {expand: "expand", collapse: "collapse"} |