mirror of
https://github.com/langgenius/dify.git
synced 2026-03-16 12:27:42 +08:00
14 lines
189 B
TypeScript
14 lines
189 B
TypeScript
const Title = ({
|
|
title,
|
|
}: {
|
|
title: string
|
|
}) => {
|
|
return (
|
|
<div className='truncate text-text-secondary system-md-semibold'>
|
|
{title}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Title
|