UNPKG

528 BTypeScriptView Raw
1import * as React from 'react';
2export interface StackProps extends React.HTMLProps<HTMLDivElement> {
3 /** Adds space between children. */
4 hasGutter?: boolean;
5 /** content rendered inside the Stack layout */
6 children?: React.ReactNode;
7 /** additional classes added to the Stack layout */
8 className?: string;
9 /** Sets the base component to render. defaults to div */
10 component?: React.ReactNode;
11}
12export declare const Stack: React.FunctionComponent<StackProps>;
13//# sourceMappingURL=Stack.d.ts.map
\No newline at end of file