mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-19 20:16:40 +08:00
add workflow process
This commit is contained in:
16
app/components/base/icons/workflow/TemplatingTransform.tsx
Normal file
16
app/components/base/icons/workflow/TemplatingTransform.tsx
Normal file
@ -0,0 +1,16 @@
|
||||
// GENERATE BY script
|
||||
// DON NOT EDIT IT MANUALLY
|
||||
|
||||
import * as React from 'react'
|
||||
import data from './TemplatingTransform.json'
|
||||
import IconBase from '@/app/components/base/icons/IconBase'
|
||||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase'
|
||||
|
||||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>((
|
||||
props,
|
||||
ref,
|
||||
) => <IconBase {...props} ref={ref} data={data as IconData} />)
|
||||
|
||||
Icon.displayName = 'TemplatingTransform'
|
||||
|
||||
export default Icon
|
||||
Reference in New Issue
Block a user