@tolokoban/ui
Version:
React components with theme
11 lines • 478 B
TypeScript
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: React.ReactElement[];
};
export declare function ViewCombo(props: ViewComboProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Combo.d.ts.map