mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-12 19:06:02 +02:00
15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
checkbox: {
|
|
borderRadius: 6,
|
|
width: 20,
|
|
height: 20,
|
|
borderWidth: 2,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
checkboxContainer: {
|
|
marginRight: 10,
|
|
},
|
|
});
|