24 lines
455 B
TypeScript
24 lines
455 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
radioButton: {
|
|
width: 24,
|
|
height: 24,
|
|
borderRadius: 12,
|
|
borderWidth: 2,
|
|
marginRight: 10,
|
|
borderColor: "#A8A8A8A6",
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
selectedRadioButton: {
|
|
borderColor: "#1F002A",
|
|
},
|
|
innerRadio: {
|
|
width: 12,
|
|
height: 12,
|
|
borderRadius: 6,
|
|
backgroundColor: "#1F002A",
|
|
},
|
|
});
|