❗ DEPRECATED ❗ : Superseded by @fdmg/design-system. See: https://github.com/FDMediagroep/fd-design-system
FD-themed panels
- Run
npm i -D @fdmg/fd-panels
To run the demo, check-out this repository and run npm run build-demo
.
After the build succeeded you can open dist/demo.html
with your webbrowser.
export interface Props {
/**
* Optional set a box-shadow. This effect replaces the default 1 pixel border.
*/
boxShadow?: boolean;
}
import Panel from '@fdmg/fd-panels';
...
<Panel boxShadow={true}>
<h2>Volg dit nieuwsverhaal</h2>
<p>Ontvang een update wanneer we een vervolgartikel plaatsen.</p>
</Panel>