petals-ui
Version:
Front-end UI components foundation
12 lines (11 loc) • 322 B
TypeScript
import { PanelBodyStyle } from './aliases';
interface IPanelComponent {
readonly title: string;
readonly fixed: boolean;
readonly bodyClassName: string;
readonly bodyStyle: PanelBodyStyle;
}
interface IPanelHeaderComponent {
readonly title: string;
}
export { IPanelComponent, IPanelHeaderComponent };