Files
dify/web/app/components/base/icons/src/image/llm/WxyyText.tsx

16 lines
454 B
TypeScript
Raw Normal View History

// GENERATE BY script
// DON NOT EDIT IT MANUALLY
import * as React from 'react'
import s from './WxyyText.module.css'
import cn from '@/utils/classnames'
const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>((
{ className, ...restProps },
ref,
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
2023-10-10 12:10:43 +08:00
Icon.displayName = 'WxyyText'
export default Icon