mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-14 13:24:38 +02:00
22 lines
374 B
TypeScript
22 lines
374 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
export const styles = StyleSheet.create({
|
|
mainLegendContainer: {
|
|
flexDirection: "row",
|
|
flexWrap: "wrap",
|
|
alignItems: "center",
|
|
},
|
|
legendContainer: {
|
|
flexDirection: "row",
|
|
alignItems: "center",
|
|
margin: 4,
|
|
},
|
|
legendColor: {
|
|
width: 12,
|
|
height: 12,
|
|
marginRight: 6,
|
|
},
|
|
legendtText: {
|
|
color: "white",
|
|
},
|
|
});
|