ConvoyPanel/resources/scripts/components/elements/ContentContainer.tsx
2022-10-29 18:58:35 +00:00

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