| 123456789101112131415161718 |
- import { PropsWithChildren } from 'react'
- import { cn } from 'ui'
- /**
- * Standardized padding and width layout for non-custom reports
- */
- const ReportPadding = ({ children }: PropsWithChildren<{}>) => {
- return (
- <div
- className={cn(
- 'flex flex-col grow gap-4 px-5 py-6 mx-auto 1xl:px-28 lg:px-16 2xl:px-32 w-full @lg:px-6 @xl:px-22'
- )}
- >
- {children}
- </div>
- )
- }
- export default ReportPadding
|