michihouse-components-tmp
Version:
Biblioteca de componentes da MichiHouse
13 lines (12 loc) • 329 B
TypeScript
import React from "react";
export interface RadioGroupProps {
defaultValue: string;
fields: string[];
direction: "horizontal" | "vertical";
actions: {
onChange: (value: string) => void;
};
classNameRadioGroup?: string;
}
declare const RadioGroup: React.FC<RadioGroupProps>;
export { RadioGroup };