import styled from 'styled-components'; import { UIStyledComponentProps } from '../../components/types'; import { getCssResponsive } from '../../components/utils'; type Props = { }; export type BoxProps = UIStyledComponentProps; export const Box = styled.div` ${props => getCssResponsive(props)} `;