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