UNPKG

ideaz-element

Version:

<p align="center"> <a href="" target="_blank" rel="noopener noreferrer"> <img src="./docs/public/logo.svg" alt="Ideaz Element" width="180" style="width: 180px;" /> </a> </p>

10 lines (8 loc) 254 B
import { OptionsItem } from './common'; export interface RadioOptionsItem extends OptionsItem { type?: 'radio' | 'radio-button'; border?: boolean; size?: 'large' | 'default' | 'small'; name?: string; change?: (value: any) => void; }