{"version":3,"file":"AuthPaper-DXqaAz73.js","sources":["../../src/core/components/AuthPaper.tsx"],"sourcesContent":["import clsx from 'clsx';\r\nimport type * as React from 'react';\r\nimport { SiteTitle } from './SiteTitle';\r\n\r\ninterface IProps {\r\n variant?: 'narrow' | 'wide';\r\n title: string;\r\n hideTitle?: boolean;\r\n children: React.ReactNode | React.ReactNode[];\r\n className?: string;\r\n}\r\n\r\nexport const AuthPaper = (props: IProps) => {\r\n const { variant = 'narrow', children, title, hideTitle = false } = props;\r\n return (\r\n