Skip to content

Commit

Permalink
rename AuthContainer component to AuthContent
Browse files Browse the repository at this point in the history
  • Loading branch information
firehawk89 committed Jan 31, 2024
1 parent eefe995 commit 6a42ecc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import Content from '@/components/ui/content'
import { cn } from '@/lib/utils'
import { FC, ReactNode } from 'react'

type AuthContainerProps = {
type AuthContentProps = {
children: ReactNode
className?: string
}

const AuthContainer: FC<AuthContainerProps> = ({ children, className }) => {
const AuthContent: FC<AuthContentProps> = ({ children, className }) => {
return (
<div className={cn('h-screen w-screen bg-gradient-blue-white', className)}>
<Content className="flex items-center justify-center dark:bg-none dark:bg-base-gray-8">
Expand All @@ -19,4 +19,4 @@ const AuthContainer: FC<AuthContainerProps> = ({ children, className }) => {
)
}

export default AuthContainer
export default AuthContent

0 comments on commit 6a42ecc

Please sign in to comment.