incr/resources/js/components/ui/ComponentTitle.tsx
2025-07-13 02:10:52 +02:00

15 lines
350 B
TypeScript

import { FC, ReactNode } from 'react';
interface ComponentTitleProps {
children: ReactNode;
}
const ComponentTitle: FC<ComponentTitleProps> = ({ children }) => {
return (
<h2 className="text-red-500 text-lg font-mono font-bold tracking-wider uppercase">
{ children }
</h2>
)
}
export default ComponentTitle