UNPKG

@tolokoban/ui

Version:

React components with theme

12 lines 487 B
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.ReactElement | React.ReactElement[]; }; export declare function ViewStack(props: ViewStackProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Stack.d.ts.map