import React from 'react'; import styled from 'styled-components'; interface ModalTitleProps { text?: string; } const ModalTitle: React.FC = ({text}) => {text}; const StyledModalTitle = styled.div` align-items: center; color: #854f97d4; display: flex; font-size: 1.5rem; font-weight: 700; height: ${(props) => props.theme.topBarSize}px; justify-content: center; margin-top: ${(props) => -props.theme.spacing[4]}px; text-transform: uppercase; `; export default ModalTitle;