Files
dkala-admin/src/components/ServiceSection.tsx
T
2026-02-16 12:40:31 +03:30

19 lines
499 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { type 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