feat: frontend multi models support (#804)
Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Joel <iamjoel007@gmail.com>
This commit is contained in:
13
web/app/components/base/icons/src/image/llm/TongyiTextCn.tsx
Normal file
13
web/app/components/base/icons/src/image/llm/TongyiTextCn.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import cn from 'classnames'
|
||||
import s from './TongyiTextCn.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
|
||||
Reference in New Issue
Block a user