dify/web/app/components/plugins/card/base/title.tsx

14 lines
203 B
TypeScript
Raw Normal View History

2024-10-10 10:40:26 +08:00
const Title = ({
title,
}: {
title: string
}) => {
return (
<div className='max-w-[150px] truncate text-text-secondary system-md-semibold'>
{title}
</div>
)
}
export default Title