goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
22 lines • 918 B
TypeScript
import { default as React, FC, ReactNode } from 'react';
import { AppBarStyles } from '../../theme';
export interface AppBarProps {
/** Content displayed in the app bar (typically navigation, search, actions) */
children?: ReactNode;
/** Position of the app bar */
position?: 'static' | 'fixed' | 'absolute' | 'sticky' | 'relative';
/** Whether the app bar should have elevation (box shadow) */
elevated?: boolean;
/** Comprehensive styling options including theme, custom colors, and layout properties */
styles?: AppBarStyles;
/** Additional CSS class name */
className?: string;
/** Callback fired when the app bar is clicked */
onClick?: (event: React.MouseEvent<HTMLDivElement>) => void;
}
/**
* A top navigation bar component with comprehensive theming support.
*/
declare const AppBar: FC<AppBarProps>;
export default AppBar;
//# sourceMappingURL=index.d.ts.map