@spaced-out/ui-design-system
Version:
Sense UI components library
17 lines • 732 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
export interface StickyBarProps {
className?: string;
children: React.ReactNode;
position?: 'top' | 'bottom';
testId?: string;
}
export interface StickyBarChildProps {
className?: string;
children: React.ReactNode;
testId?: string;
}
export declare const StickyBarLeftSlot: ({ className, children, testId, ...props }: StickyBarChildProps) => React.JSX.Element;
export declare const StickyBarRightSlot: ({ className, children, testId, ...props }: StickyBarChildProps) => React.JSX.Element;
export declare const StickyBar: Flow.AbstractComponent<StickyBarProps, HTMLDivElement>;
//# sourceMappingURL=StickyBar.d.ts.map