Files
spestexnika/components/tools/title.tsx
Davron Chetin 398269b49b spestexnika
2025-10-04 11:41:38 +05:00

9 lines
188 B
TypeScript

import { TitleType } from '@/types'
import React from 'react'
export default function Title({text}:TitleType) {
return (
<div className='text-primary text-3xl ' >{text}</div>
)
}