UNPKG

artwork-react-native

Version:

artwork design master for react-native

21 lines (20 loc) 599 B
/// <reference types="react" /> /// <reference types="react-native" /> import React from 'react'; import { RadioItemProps } from './PropsType'; import { IRadioStyle } from './style'; export interface IRadioItemNativeProps extends RadioItemProps { radioStyle?: any; styles?: IRadioStyle; } export default class RadioItem extends React.Component<IRadioItemNativeProps, any> { static defaultProps: { styles: { [x: string]: number & { __registeredStyleBrand: any; }; }; }; handleClick: () => void; render(): JSX.Element; }