UNPKG

@patternfly/react-core

Version:

This library provides a set of common React components for use with the PatternFly reference implementation.

13 lines 678 B
/// <reference types="react" /> export interface MastheadLogoProps extends React.DetailedHTMLProps<React.HTMLProps<HTMLAnchorElement>, HTMLAnchorElement> { /** Content rendered inside of the masthead logo. */ children?: React.ReactNode; /** Additional classes added to the masthead logo. */ className?: string; /** Component type of the masthead logo. */ component?: React.ElementType<any> | React.ComponentType<any>; /** @beta Flag indicating the logo is a compact variant. Used in docked layouts. */ isCompact?: boolean; } export declare const MastheadLogo: React.FunctionComponent<MastheadLogoProps>; //# sourceMappingURL=MastheadLogo.d.ts.map