Files
panel/resources/scripts/components/elements/ContentContainer.tsx
2022-11-13 03:27:51 +00:00

14 lines
282 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 mx-auto px-4 sm:px-6 lg:px-8`}
${({ padding }) => (padding ? tw`py-6` : '')}
`
export default ContentContainer