UNPKG

@actinc/dls

Version:

Design Language System (DLS) for ACT & Encoura front-end projects.

20 lines 765 B
/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { AppBarProps } from '@mui/material/AppBar'; import { FC, ReactElement } from 'react'; import { RenderLogoProps } from './RenderLogo'; import { RenderNavigationItemProps } from './RenderNavigationItem'; export interface AppBarNavigationProps { appBarHeight?: number; AppBarProps?: AppBarProps; headerRightElement?: ReactElement<unknown>; RenderLogoProps: RenderLogoProps; navigationItems: RenderNavigationItemProps[]; } export declare const AppBarNavigation: FC<AppBarNavigationProps>; export default AppBarNavigation; //# sourceMappingURL=index.d.ts.map