14 lines
323 B
TypeScript
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;
|