<Modal marginTop={totlaHeight}>
interface IProps { marginTop: number; } export const Modal = styled.View` margin-top: ${({marginTop}: IProps) => marginTop ? `${marginTop - 150}px` : '0px'}; `;
position: absolute; bottom: 0;