Repository URL to install this package:
|
Version:
2.1.14 ▾
|
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;