You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
532 B
12 lines
532 B
import * as React from 'react';
|
|
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
import { GapValue } from './types';
|
|
import { ResponsiveUtilityValue } from './createUtilityClasses';
|
|
export declare type StackDirection = 'horizontal' | 'vertical';
|
|
export interface StackProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
|
|
direction?: StackDirection;
|
|
gap?: ResponsiveUtilityValue<GapValue>;
|
|
}
|
|
declare const Stack: BsPrefixRefForwardingComponent<'span', StackProps>;
|
|
export default Stack;
|