@spaced-out/ui-design-system
Version:
Sense UI components library
15 lines • 670 B
TypeScript
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