mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
7bbe12b2bd
Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
48 lines
949 B
TypeScript
48 lines
949 B
TypeScript
import type { FC } from 'react'
|
|
import classNames from 'classnames'
|
|
|
|
import data from '@emoji-mart/data'
|
|
import { init } from 'emoji-mart'
|
|
import style from './style.module.css'
|
|
|
|
init({ data })
|
|
|
|
export type AppIconProps = {
|
|
size?: 'xs' | 'tiny' | 'small' | 'medium' | 'large'
|
|
rounded?: boolean
|
|
icon?: string
|
|
background?: string
|
|
className?: string
|
|
innerIcon?: React.ReactNode
|
|
onClick?: () => void
|
|
}
|
|
|
|
const AppIcon: FC<AppIconProps> = ({
|
|
size = 'medium',
|
|
rounded = false,
|
|
icon,
|
|
background,
|
|
className,
|
|
innerIcon,
|
|
onClick,
|
|
}) => {
|
|
return (
|
|
<span
|
|
className={classNames(
|
|
style.appIcon,
|
|
size !== 'medium' && style[size],
|
|
rounded && style.rounded,
|
|
className ?? '',
|
|
)}
|
|
style={{
|
|
background,
|
|
}}
|
|
onClick={onClick}
|
|
>
|
|
{innerIcon || ((icon && icon !== '') ? <em-emoji id={icon} /> : <em-emoji id='🤖' />)}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export default AppIcon
|