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;
|