Files
super-app/components/reusable/select-button/SelectButtonStyles.ts
Mayank Singh 9527976c41 TP-64336 | Multi plan feature (#10813)
Co-authored-by: sangaraboinarishvik <rishvik.vardhan@navi.com>
2024-05-14 18:10:14 +00:00

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",
},
});