12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
|
|
import {
|
||
|
|
MergeCellsOutlined,
|
||
|
|
RocketOutlined,
|
||
|
|
SendOutlined,
|
||
|
|
} from '@ant-design/icons';
|
||
|
|
|
||
|
|
export const componentList = [
|
||
|
|
{ name: 'Begin', icon: <SendOutlined />, description: '' },
|
||
|
|
{ name: 'Retrieval', icon: <RocketOutlined />, description: '' },
|
||
|
|
{ name: 'Generate', icon: <MergeCellsOutlined />, description: '' },
|
||
|
|
];
|