import { Modal as ModalComponent } from 'antd'; import styled from 'styled-components'; interface Props { height?: string; } export const Modal = styled(ModalComponent)` .ant-modal-content, .ant-modal-body { min-height: ${({ height = '80vh' }): string => height}; } `;