petals-ui
Version:
Front-end UI components foundation
14 lines (13 loc) • 372 B
TypeScript
import { CardBodyStyle } from './aliases';
interface ICardComponent {
readonly title: string;
readonly bodyClassName: string;
readonly bodyStyle: CardBodyStyle;
}
interface ICardHeaderComponent {
readonly title: string;
readonly image: string;
}
interface ICardFooterComponent {
}
export { ICardComponent, ICardHeaderComponent, ICardFooterComponent };