@tolokoban/ui
Version:
React components with theme
12 lines • 457 B
TypeScript
import * as React from "react";
import { CommonProps } from "../../theme/styles/common";
export type ViewStackProps = CommonProps & {
/**
* The key or the list of keys you want to be visible.
* Children without key will always be visible.
*/
value?: string | string[];
children?: React.JSX.Element[] | React.JSX.Element;
};
export declare function ViewStack(props: ViewStackProps): JSX.Element;
//# sourceMappingURL=Stack.d.ts.map