12 lines
207 B
TypeScript
12 lines
207 B
TypeScript
|
|
import { StyleSheet } from "react-native";
|
||
|
|
|
||
|
|
const styles = StyleSheet.create({
|
||
|
|
horizontalSolidSeparator: {
|
||
|
|
height: 1,
|
||
|
|
backgroundColor: "#E3E5E5",
|
||
|
|
opacity: 0.8,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
export default styles;
|