seti-ramesesv1
Version:
Reusable components and context for Next.js apps
9 lines (8 loc) • 318 B
TypeScript
export type RadioProps = {
value: string | number;
label?: string;
disabled?: boolean;
labelPlacement?: "right" | "left" | "top" | "bottom";
};
declare function Radio({ value, label, disabled: radioDisabled, labelPlacement }: RadioProps): import("react/jsx-runtime").JSX.Element;
export default Radio;