@conductionnl/nl-design-system
Version:
NL design system components created by Conduction
15 lines (14 loc) • 350 B
TypeScript
import * as React from "react";
import "../../style/card.css";
interface CardProps {
title?: string;
cardHeader?: () => JSX.Element;
cardBody: () => JSX.Element;
divider?: boolean;
}
/**
* This components renders a bootstrap card.
* @returns JSX of the generated Card.
*/
export declare const Card: React.FC<CardProps>;
export {};