14 lines
No EOL
293 B
TypeScript
14 lines
No EOL
293 B
TypeScript
import styled from '@emotion/styled'
|
|
import tw from 'twin.macro'
|
|
|
|
interface Props {
|
|
padding?: boolean
|
|
}
|
|
|
|
const ContentContainer = styled.div<Props>`
|
|
${tw`max-w-7xl space-y-3 mx-auto px-4 sm:px-6 lg:px-8`}
|
|
|
|
${({ padding }) => (padding ? tw`py-12` : '')}
|
|
`
|
|
|
|
export default ContentContainer |