@cbinsights/fds
Version:
Form: A design system by CB Insights
9 lines (8 loc) • 307 B
TypeScript
import { OptionProps } from '..';
import { Props } from 'react-select';
export interface SelectedValueProps {
item: OptionProps;
selectProps: Props<OptionProps, boolean>;
}
export declare const SelectedValue: ({ item, selectProps }: SelectedValueProps) => JSX.Element;
export default SelectedValue;