import { Animated, ViewProps } from "react-native"; import styled from "styled-components/native"; import { vh, vw } from "../../helpers/responsive"; export const OverlayView = styled.View` height: ${vh(100)}; width: ${vw(100)}; `; export const TipView = styled(Animated.View)` position: absolute; `;