mirror of
https://github.com/langgenius/dify.git
synced 2026-04-28 11:56:55 +08:00
16 lines
454 B
TypeScript
16 lines
454 B
TypeScript
// 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} />)
|
|
|
|
Icon.displayName = 'WxyyText'
|
|
|
|
export default Icon
|