James 7171bde1d9 fix not able to scroll in my models screen
Signed-off-by: James <james@jan.ai>
2023-10-06 16:46:47 +07:00

17 lines
320 B
TypeScript

import React from "react";
type Props = {
title: string;
className?: string;
};
const HeaderTitle: React.FC<Props> = ({ title, className }) => (
<h2
className={`my-5 font-semibold text-[34px] tracking-[-0.4px] leading-[41px] ${className}`}
>
{title}
</h2>
);
export default React.memo(HeaderTitle);