mirror of
https://github.com/tale/headplane.git
synced 2026-08-22 02:36:38 +00:00
feat: begin redesign and component unification
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
|
||||
export interface TitleProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export default function Title({ children }: TitleProps) {
|
||||
return (
|
||||
<h3 className="text-2xl font-bold mb-6">
|
||||
{children}
|
||||
</h3>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user