@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
8 lines (7 loc) • 336 B
TypeScript
import { IModalStandAlone } from '../types/modal';
type PickedProps = 'styles' | 'blocked' | 'closeIcon' | 'closeButton' | 'title' | 'dragIcon' | 'device';
type ModalHeaderProps = Pick<IModalStandAlone, PickedProps> & {
titleIdFinal: string;
};
export declare const ModalHeader: (props: ModalHeaderProps) => JSX.Element;
export {};