UNPKG

@tolokoban/ui

Version:

React components with theme

11 lines 471 B
import * as React from "react"; import { CommonProps } from "../../theme"; import { ViewWithValue } from "../../types"; import { ViewDialogProps } from "../Dialog"; export type ViewComboProps = CommonProps & ViewWithValue<string> & ViewDialogProps & { className?: string; label?: React.ReactNode; children: JSX.Element[]; }; export declare function ViewCombo(props: ViewComboProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Combo.d.ts.map