UNPKG

@spaced-out/ui-design-system

Version:
15 lines 670 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; export type StickyBarProps = { className?: string; children: React.ReactNode; position?: 'top' | 'bottom'; }; export type StickyBarChildProps = { className?: string; children: React.ReactNode; }; export declare const StickyBarLeftSlot: ({ className, children, ...props }: StickyBarChildProps) => React.JSX.Element; export declare const StickyBarRightSlot: ({ className, children, ...props }: StickyBarChildProps) => React.JSX.Element; export declare const StickyBar: Flow.AbstractComponent<StickyBarProps, HTMLDivElement>; //# sourceMappingURL=StickyBar.d.ts.map