@atlaskit/side-navigation
Version:
A highly composable side navigation component that supports nested views.
12 lines (11 loc) • 647 B
TypeScript
import { type CSSFn, type StatelessCSSFn } from '@atlaskit/menu';
/**
* Allows chaining of style functions on top of base style functions
* @param baseStyle the base custom cssFn
* @param newStyle a new cssFn to be applied after the base style
*
* @deprecated Please avoid using this prop as we intend to remove the prop completely in a future release. See DSP-2682 for more information.
*/
export declare const overrideStyleFunction: <TState>(baseStyle: CSSFn<TState>, newStyle?: CSSFn<TState> | undefined) => CSSFn<TState>;
export declare const baseSideNavItemStyle: CSSFn;
export declare const sectionHeaderSpacingStyles: StatelessCSSFn;