react-native-modern-elements
Version:
A modern, customizable UI component library for React Native
17 lines (16 loc) • 494 B
TypeScript
import React from "react";
import { StyleProp, ViewStyle } from "react-native";
interface RadioCircleProps {
value: string;
selected: string;
type?: "one" | "two";
onSelect: (value: string) => void;
containerStyle?: StyleProp<ViewStyle>;
circleSize?: number;
circleBorderWidth?: number;
circleColor?: string;
selectedColor?: string;
activeDotSize?: number;
}
declare const _default: React.NamedExoticComponent<RadioCircleProps>;
export default _default;