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