fomantic-ui-react
Version:
Fomantic-UI React -- A React Component Library.
10 lines (9 loc) • 359 B
TypeScript
/// <reference types="react" />
import { HeaderContentProps } from './type';
declare const HeaderContent: {
({ as, className, content, children, ...props }: HeaderContentProps): import("react").ReactElement<{
className: string;
}, string | import("react").JSXElementConstructor<any>>;
displayName: string;
};
export default HeaderContent;