UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

46 lines (45 loc) 2.2 kB
import { SystemProps } from "../system/system.js"; import { VuiComponent } from "../core/vui.js"; import "../core/index.js"; import { HeaderProps } from "./header.types.js"; import { HeaderAccount } from "./headerAccount.js"; import { HeaderAccountUserInfo } from "./headerAccountUserInfo.js"; import { HeaderApplicationName } from "./headerApplicationName.js"; import { HeaderContent } from "./headerContent.js"; import { HeaderCreateAccount } from "./headerCreateAccount.js"; import { HeaderDivider } from "./headerDivider.js"; import { HeaderLinkItem } from "./headerLinkItem.js"; import { HeaderLogo } from "./headerLogo.js"; import { HeaderMainLinks } from "./headerMainLinks.js"; import { HeaderMobileContent } from "./headerMobileContent.js"; import { HeaderMobileToggle } from "./headerMobileToggle.js"; import { HeaderNotifications } from "./headerNotifications.js"; import { HeaderServices } from "./headerServices.js"; import { HeaderServicesMessage } from "./headerServicesMessage.js"; import { HeaderSignIn } from "./headerSignIn.js"; import { HeaderSupport } from "./headerSupport.js"; import "../index.js"; //#region src/header/header.d.ts declare const HeaderBase: import("styled-components").StyledComponent<"header", import("styled-components").DefaultTheme, SystemProps, never>; /** Branded Veracity Header with logo, links, services, account and other data. Controls max-width of the content. */ declare const Header: VuiComponent<'header', HeaderProps> & { Account: typeof HeaderAccount; AccountUserInfo: typeof HeaderAccountUserInfo; Support: typeof HeaderSupport; ApplicationName: typeof HeaderApplicationName; Content: typeof HeaderContent; CreateAccount: typeof HeaderCreateAccount; Divider: typeof HeaderDivider; LinkItem: typeof HeaderLinkItem; Logo: typeof HeaderLogo; MainLinks: typeof HeaderMainLinks; MobileContent: typeof HeaderMobileContent; MobileToggle: typeof HeaderMobileToggle; Notifications: typeof HeaderNotifications; Services: typeof HeaderServices; ServicesMessage: typeof HeaderServicesMessage; SignIn: typeof HeaderSignIn; }; //#endregion export { Header, Header as default, HeaderBase }; //# sourceMappingURL=header.d.ts.map