mirror of
https://github.com/langgenius/dify.git
synced 2025-07-17 22:30:43 +00:00
13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
![]() |
import type { ComponentProps, FC } from 'react'
|
||
|
import classNames from '@/utils/classnames'
|
||
|
|
||
|
export type FormattedTextProps = ComponentProps<'p'>
|
||
|
|
||
|
export const FormattedText: FC<FormattedTextProps> = (props) => {
|
||
|
const { className, ...rest } = props
|
||
|
return <p
|
||
|
{...rest}
|
||
|
className={classNames('leading-7', className)}
|
||
|
>{props.children}</p>
|
||
|
}
|