UNPKG

mainstack-library

Version:

component library for the mainstack frontend task

14 lines (13 loc) 362 B
import React from "react"; interface OptionType { label: string; value: string; } interface RadioDropdownProps { options: OptionType[]; onChange?: (selectedOptions: OptionType[]) => void; defaultSelectedOptions?: OptionType[]; className?: string; } declare const RadioDropdown: React.FC<RadioDropdownProps>; export default RadioDropdown;