9 lines
172 B
Plaintext
9 lines
172 B
Plaintext
export const CardTitle = ({ children }) => {
|
|
return (
|
|
<div className="text-base font-semibold text-gray-900 dark:text-gray-100">
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|