Repository URL to install this package:
|
Version:
4.0.116 ▾
|
import { ReactNode } from 'react';
import { OptionType } from '../Option/typings';
/**
* @alias ExpandingList
*/
export interface OptionListProps {
isVisible?: boolean;
list: Array<OptionType>;
children?: ReactNode;
className?: string;
}