@synergycodes/overflow-ui
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.
8 lines (7 loc) • 312 B
TypeScript
import { SelectItem } from '../types';
import { ItemSize } from '../../../shared/types/item-size';
type SelectOptionProps = SelectItem & {
size?: ItemSize;
};
export declare function SelectOption({ icon, value, label, size, ...props }: SelectOptionProps): import("react/jsx-runtime").JSX.Element;
export {};