mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-09 01:41:48 +08:00
14 lines
203 B
TypeScript
14 lines
203 B
TypeScript
const Title = ({
|
|
title,
|
|
}: {
|
|
title: string
|
|
}) => {
|
|
return (
|
|
<div className='max-w-[150px] truncate text-text-secondary system-md-semibold'>
|
|
{title}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Title
|