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