@synergycodes/axiom
Version:
A React library for creating node-based UIs and diagram-driven applications. Perfect for React Flow users, providing ready-to-use node templates and components that work seamlessly with React Flow's ecosystem.
10 lines (9 loc) • 377 B
TypeScript
import { SelectOption } from '@mui/base';
import { SelectItem } from '../types';
type SelectValueProps = {
selectedOptionLabel: SelectOption<string | number> | null;
items: SelectItem[];
placeholder?: string;
};
export declare function SelectValue({ selectedOptionLabel, items, placeholder, }: SelectValueProps): import("react/jsx-runtime").JSX.Element;
export {};