|
|
@@ -1,9 +1,8 @@
|
|
|
import { HTMLAttributes, useState } from 'react'
|
|
|
-import { cn } from '@/lib/utils'
|
|
|
-import { zodResolver } from '@hookform/resolvers/zod'
|
|
|
import { useForm } from 'react-hook-form'
|
|
|
+import { zodResolver } from '@hookform/resolvers/zod'
|
|
|
+import { IconBrandFacebook, IconBrandGithub } from '@tabler/icons-react'
|
|
|
import { z } from 'zod'
|
|
|
-import { Button } from '@/components/custom/button'
|
|
|
import {
|
|
|
Form,
|
|
|
FormControl,
|
|
|
@@ -13,8 +12,9 @@ import {
|
|
|
FormMessage,
|
|
|
} from '@/components/ui/form'
|
|
|
import { Input } from '@/components/ui/input'
|
|
|
-import { IconBrandFacebook, IconBrandGithub } from '@tabler/icons-react'
|
|
|
-import { PasswordInput } from '@/components/password-input'
|
|
|
+import { Button } from '@/components/custom/button'
|
|
|
+import { PasswordInput } from '@/components/custom/password-input'
|
|
|
+import { cn } from '@/lib/utils'
|
|
|
|
|
|
interface SignUpFormProps extends HTMLAttributes<HTMLDivElement> {}
|
|
|
|