import styled, { css } from "styled-components"

export const ModalSection = styled.div`
  ${({ theme }) => css`
    width: 45.7rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  `}
`
