UNPKG

@devfamily/admiral

Version:

Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.

10 lines (9 loc) 405 B
import React from 'react'; import { FormItemProps } from '../Item'; import type { RadioGroupProps } from '../../ui/Radio/interfaces'; import { InputComponentWithName } from '../interfaces'; export interface RadioInputProps extends RadioGroupProps, FormItemProps { name: string; onChange?: (value: any) => void; } export declare const RadioInput: InputComponentWithName<React.FC<RadioInputProps>>;