fix bug field text mui

This commit is contained in:
Ehsan
2024-06-24 03:10:07 +03:30
parent 9e1704e045
commit a5b4179135
5 changed files with 93 additions and 74 deletions
+7
View File
@@ -1,3 +1,4 @@
import Field from '@/app/component/element/Field'
import React from 'react'
function SignInPage() {
@@ -7,6 +8,12 @@ function SignInPage() {
<div className='flex flex-col justify-center gap-[24px] mt-[48px] items-center'>
<p className='text-[#616161] text-[14px] font-normal'>شماره همراه خود را وارد نمایید.</p>
</div>
<div className='mt-[24px] mb-[32px]'>
<Field
type='number'
title='شماره همراه'
/>
</div>
</div>
)
}