petals-ui
Version:
Front-end UI components foundation
17 lines (12 loc) • 365 B
text/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 };