19 lines
492 B
TypeScript
19 lines
492 B
TypeScript
import { FC } from 'react'
|
||
|
||
const ServiceSection: FC = () => {
|
||
return (
|
||
<div className='flex gap-4'>
|
||
<div className='size-10 rounded-xl bg-green-300'></div>
|
||
<div>
|
||
<div className='text-sm'>
|
||
دی منو
|
||
</div>
|
||
<div className='text-xs text-description'>
|
||
منو رستوران
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|
||
|
||
export default ServiceSection |