import { PropsWithChildren } from 'react' import { cn } from 'ui' /** * Standardized padding and width layout for non-custom reports */ const ReportPadding = ({ children }: PropsWithChildren<{}>) => { return (
{children}
) } export default ReportPadding