Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
/**
 * @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;
}