structure
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
import { FC } from 'react'
|
||||
import Button from '../../components/Button'
|
||||
import { TickCircle } from 'iconsax-react'
|
||||
import Input from '../../components/Input'
|
||||
import CreateSidebar from './components/CreateSidebar'
|
||||
const CreateCompany: FC = () => {
|
||||
return (
|
||||
<div className='mt-4'>
|
||||
<div className='flex justify-between items-center'>
|
||||
<div>
|
||||
افزودن شرکت
|
||||
</div>
|
||||
|
||||
<Button
|
||||
className='w-fit px-4'
|
||||
>
|
||||
<div className='flex items-center gap-2'>
|
||||
<TickCircle size={20} color='white' />
|
||||
<div>ثبت شرکت</div>
|
||||
</div>
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<div className='flex gap-6'>
|
||||
<div className='flex-1'>
|
||||
<div className='flex-1 mt-10 bg-white py-8 xl:px-10 px-4 rounded-3xl'>
|
||||
<div>اطلاعات شرکت</div>
|
||||
|
||||
<div className='rowTwoInput mt-6'>
|
||||
<Input
|
||||
label='نام شرکت'
|
||||
name='name'
|
||||
onChange={() => { }}
|
||||
error_text=''
|
||||
/>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<CreateSidebar />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default CreateCompany
|
||||
Reference in New Issue
Block a user