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    
@skava/ui-presets / dist / presets / DarkSelectDropDown / DarkSelectDropDown.d.ts
Size: Mime:
import React from 'react';
import { DarkSelectDropDownProps } from './typings';
declare class DarkSelectDropDown extends React.Component<DarkSelectDropDownProps> {
    static defaultProps: {
        className: string;
        options: ({
            label: string;
            value: string;
            isSelected: boolean;
        } | {
            label: string;
            value: string;
            isSelected?: undefined;
        })[];
    };
    render(): JSX.Element;
}
export { DarkSelectDropDown };
export default DarkSelectDropDown;