mirror of
https://github.com/langgenius/dify.git
synced 2026-01-19 11:45:05 +08:00
Signed-off-by: B-Step62 <yuki.watanabe@databricks.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
21 lines
534 B
TypeScript
21 lines
534 B
TypeScript
// GENERATE BY script
|
|
// DON NOT EDIT IT MANUALLY
|
|
|
|
import * as React from 'react'
|
|
import data from './DatabricksIconBig.json'
|
|
import IconBase from '@/app/components/base/icons/IconBase'
|
|
import type { IconData } from '@/app/components/base/icons/IconBase'
|
|
|
|
const Icon = (
|
|
{
|
|
ref,
|
|
...props
|
|
}: React.SVGProps<SVGSVGElement> & {
|
|
ref?: React.RefObject<React.MutableRefObject<HTMLOrSVGElement>>;
|
|
},
|
|
) => <IconBase {...props} ref={ref} data={data as IconData} />
|
|
|
|
Icon.displayName = 'DatabricksIconBig'
|
|
|
|
export default Icon
|