mainstack-library
Version:
component library for the mainstack frontend task
14 lines (13 loc) • 350 B
TypeScript
import React from "react";
interface OptionType {
label: string;
value: string;
}
interface RadioDropdownProps {
options: OptionType[];
onChange?: (selectedOptions: OptionType[]) => void;
defaultSelectedOptions?: OptionType[];
className?: string;
}
export declare const RadioDropdown: React.FC<RadioDropdownProps>;
export {};