18 lines
577 B
JavaScript
18 lines
577 B
JavaScript
import { Button } from '@mui/material'
|
|
import React from 'react'
|
|
|
|
function AddComment() {
|
|
return (
|
|
<div className='flex items-center justify-start gap-[16px] my-[24px]'>
|
|
<p className='text-[#616161] text-[16px] font-normal'>شما هم نظر خود را به اشتراک بگذارید:</p>
|
|
<Button
|
|
variant='outlined'
|
|
className='!border !border-[#5559CE] !rounded-[4px] !px-[38px] !py-[9px]'
|
|
>
|
|
ثبت نظر
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AddComment |