Co-authored-by: Prajjaval Verma <prajjaval.verma@navi.com> Co-authored-by: Balrambhai Sharma <sharma.balrambhai@navi.com>
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
import { StyleSheet } from "react-native";
|
|
|
|
const styles = StyleSheet.create({
|
|
overflowHidden: {
|
|
overflow: "hidden",
|
|
},
|
|
});
|
|
|
|
export default styles;
|