UNPKG

@wulperstudio/cms

Version:
14 lines (13 loc) 482 B
import React from 'react'; import { Breakpoint, ContainerProps, AppBarProps } from '@mui/material'; import { ISizeVariant } from './styled'; export interface HeaderFlexModel extends AppBarProps { backgroundColor?: string; sticky?: boolean; scrolled?: boolean; isBorder?: boolean; containerMaxWidth?: false | Breakpoint; size?: ISizeVariant; containerProps?: Omit<ContainerProps, 'maxWidth'>; } export declare const HeaderFlex: React.FC<HeaderFlexModel>;