@coreui/react
Version:
UI Components Library for React.js
19 lines (18 loc) • 580 B
TypeScript
import React, { HTMLAttributes } from 'react';
export interface CModalHeaderProps extends HTMLAttributes<HTMLDivElement> {
/**
* Sets the `aria-label` of the close button.
*
* @since 5.13.0
*/
ariaCloseLabel?: string;
/**
* A string of all className you want applied to the base component.
*/
className?: string;
/**
* Add a close button component to the header.
*/
closeButton?: boolean;
}
export declare const CModalHeader: React.ForwardRefExoticComponent<CModalHeaderProps & React.RefAttributes<HTMLDivElement>>;