Repository URL to install this package:
|
Version:
2.0.17 ▾
|
/**
* @file @todo split up
* @file @todo select dropdown in src/ui styled with presets
*/
import React from 'react';
import { NO_OP } from 'exotic';
import { SelectOptionsProps } from './typing';
export default class SelectOption extends React.Component<SelectOptionsProps> {
static defaultProps: {
selectedValue: undefined;
onClick: typeof NO_OP;
list: ReadonlyArray<any>;
type: string;
};
readonly attributes: {
options: any[];
onChange: Function;
type: string;
};
readonly view: JSX.Element;
render(): JSX.Element;
}