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 / ColorSelectDropDown / ColorSelectDropDown.d.ts
Size: Mime:
import React from 'react';
import { SelectableState } from '@skava/ui/dist/state/SelectionState';
import { ActiveOptionProps } from '@skava/ui/dist/components/molecules/SelectDropDown';
import { ColorSelectDropDownProps } from './typings';
declare class ColorSelectDropDown extends React.Component<ColorSelectDropDownProps> {
    static defaultProps: {
        className: string;
        options: {
            label: string;
            value: string;
            type: string;
        }[];
    };
    renderActiveItem: (props: ActiveOptionProps, state: SelectableState) => JSX.Element;
    render(): JSX.Element;
}
export { ColorSelectDropDown };
export default ColorSelectDropDown;