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