UNPKG

532 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3import { GapValue } from './types';
4import { ResponsiveUtilityValue } from './createUtilityClasses';
5export declare type StackDirection = 'horizontal' | 'vertical';
6export interface StackProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
7 direction?: StackDirection;
8 gap?: ResponsiveUtilityValue<GapValue>;
9}
10declare const Stack: BsPrefixRefForwardingComponent<'span', StackProps>;
11export default Stack;