UNPKG

513 BTypeScriptView Raw
1import * as React from 'react';
2export interface StackItemProps extends React.HTMLProps<HTMLDivElement> {
3 /** Flag indicating if this Stack Layout item should fill the available vertical space. */
4 isFilled?: boolean;
5 /** additional classes added to the Stack Layout Item */
6 children?: React.ReactNode;
7 /** content rendered inside the Stack Layout Item */
8 className?: string;
9}
10export declare const StackItem: React.FunctionComponent<StackItemProps>;
11//# sourceMappingURL=StackItem.d.ts.map
\No newline at end of file