Zipline-Android-App/styles/components/chartLegend.ts
2025-02-08 19:57:16 +01:00

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