Files
dify/web/app/components/plugins/card/base/title.tsx
Stephen Zhou 6ca066983d chore: auto fix for tailwind rules (#35332)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-04-16 17:11:06 +00:00

14 lines
189 B
TypeScript

const Title = ({
title,
}: {
title: string
}) => {
return (
<div className="truncate system-md-semibold text-text-secondary">
{title}
</div>
)
}
export default Title