UNPKG

@visactor/react-vtable

Version:
16 lines (15 loc) 582 B
import type { Cursor, Radio as VRenderRadio, RadioAttributes } from '@visactor/vtable/es/vrender'; import React from 'react'; export interface RadioProps { children?: string; textStyle?: RadioAttributes['text']; circleStyle?: RadioAttributes['circle']; checked?: boolean; interactive?: boolean; disabled?: boolean; disableCursor?: Cursor; spaceBetweenTextAndIcon?: number; visible?: boolean; onChange?: (checked: boolean) => void; } export declare const Radio: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<VRenderRadio>>;