mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 05:36:19 +08:00
Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Joel <iamjoel007@gmail.com>
14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
// GENERATE BY script
|
|
// DON NOT EDIT IT MANUALLY
|
|
|
|
import * as React from 'react'
|
|
import cn from 'classnames'
|
|
import s from './Wxyy.module.css'
|
|
|
|
const Icon = React.forwardRef<HTMLSpanElement, React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>>((
|
|
{ className, ...restProps },
|
|
ref,
|
|
) => <span className={cn(s.wrapper, className)} {...restProps} ref={ref} />)
|
|
|
|
export default Icon
|