Files
spestexnika/components/tools/title.tsx
2025-10-04 14:13:00 +05:00

10 lines
274 B
TypeScript

import { TitleType } from '@/types'
import React from 'react'
import Text from '../text'
export default function Title({text}:TitleType) {
return (
<div className='text-primary md:text-[45px] text-[25px] w-full text-center font-bold '><Text txt={text} /></div>
)
}