@project44-manifest/react
Version:
Manifest Design System react components
20 lines • 616 B
TypeScript
import { CSS } from '@project44-manifest/react-styles';
import type { ForwardRefComponent } from '@project44-manifest/react-types';
interface StackProps {
/** Theme aware style object */
css?: CSS;
/**
* The gap between elements in the stack.
*/
gap?: 'large' | 'medium' | 'small' | 'x-large' | 'x-small';
/**
* The layout orientation of the stack.
*
* @default 'vertical'
*/
orientation?: 'horizontal' | 'vertical';
}
declare const Stack: ForwardRefComponent<"div", StackProps>;
export type { StackProps };
export { Stack };
//# sourceMappingURL=stack.d.ts.map