mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 10:12:43 +08:00
Co-authored-by: jZonG <jzongcode@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.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 './NoToolPlaceholder.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 = 'NoToolPlaceholder'
|
|
|
|
export default Icon
|