mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-09 17:41:48 +08:00
39 lines
736 B
TypeScript
39 lines
736 B
TypeScript
import type { FC } from 'react'
|
|
import classNames from 'classnames'
|
|
import style from './style.module.css'
|
|
|
|
export type AppIconProps = {
|
|
size?: 'tiny' | 'small' | 'medium' | 'large'
|
|
rounded?: boolean
|
|
icon?: string
|
|
background?: string
|
|
className?: string
|
|
innerIcon?: React.ReactNode
|
|
}
|
|
|
|
const AppIcon: FC<AppIconProps> = ({
|
|
size = 'medium',
|
|
rounded = false,
|
|
background,
|
|
className,
|
|
innerIcon,
|
|
}) => {
|
|
return (
|
|
<span
|
|
className={classNames(
|
|
style.appIcon,
|
|
size !== 'medium' && style[size],
|
|
rounded && style.rounded,
|
|
className ?? '',
|
|
)}
|
|
style={{
|
|
background,
|
|
}}
|
|
>
|
|
{innerIcon ? innerIcon : <>🤖</>}
|
|
</span>
|
|
)
|
|
}
|
|
|
|
export default AppIcon
|