@ssplib/react-components
Version:
SSP React Components
20 lines (19 loc) • 525 B
TypeScript
import React from 'react';
export declare function Radio({ name, options, title, required, disabled, row, xs, sm, md, defaultValue, watchValue, }: {
name: string;
options: {
label: string;
value: any;
}[];
title?: string;
required?: boolean;
disabled?: boolean;
row?: boolean;
xs?: number;
sm?: number;
md?: number;
defaultValue?: any;
watchValue?: any;
}): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Radio>;
export default _default;