UNPKG

box-ui-elements-mlh

Version:
15 lines (14 loc) 470 B
import * as React from 'react'; import './Header.scss'; declare type Props = { /** Header contents */ children?: React.ReactNode; /** Additional class names to attach to the header */ className?: string; /** `background-color` CSS value applied to the header */ color?: string; /** Is header fixed */ fixed?: boolean; }; declare const Header: ({ children, color, className, fixed, ...rest }: Props) => JSX.Element; export default Header;