@dabapps/roe
Version:
A collection of React components, styles, mixins, and atomic CSS classes to aid with the development of web applications.
19 lines (18 loc) • 556 B
TypeScript
import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type NavBarProps = {
/**
* Fix the navbar to the top of the screen
*/
fixed?: boolean;
/**
* Hide the navbar when scrolling down, but display when scrolling up
*/
shy?: boolean;
/**
* Remove NavBar shadow
*/
noShadow?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: NavBarProps) => JSX.Element>;
export default _default;