James 9a79c3effa clean up
Signed-off-by: James <james@jan.ai>
2023-10-06 16:46:47 +07:00

14 lines
323 B
TypeScript

type Props = {
title: string;
};
export const DownloadModelTitle: React.FC<Props> = ({ title }) => (
<div className="py-0.5 px-2.5 bg-purple-100 rounded-md text-center">
<span className="text-xs leading-[18px] font-medium text-purple-800">
{title}
</span>
</div>
);
export default DownloadModelTitle;