chore(ui): login page & workflow page (#3046)

* login page & number input & multirow select & llm select

* workflow

* adjust nodes
This commit is contained in:
heheer
2024-11-04 10:32:38 +08:00
committed by archer
parent 0645b274da
commit 7a929db0a5
71 changed files with 745 additions and 525 deletions

View File

@@ -1,6 +1,7 @@
import React from 'react';
import MyTooltip from '.';
import { IconProps, QuestionOutlineIcon } from '@chakra-ui/icons';
import { IconProps } from '@chakra-ui/icons';
import MyIcon from '../Icon';
type Props = IconProps & {
label?: string | React.ReactNode;
@@ -9,7 +10,7 @@ type Props = IconProps & {
const QuestionTip = ({ label, maxW, ...props }: Props) => {
return (
<MyTooltip label={label} maxW={maxW}>
<QuestionOutlineIcon w={'0.9rem'} {...props} />
<MyIcon name={'help' as any} w={'16px'} color={'myGray.500'} {...props} />
</MyTooltip>
);
};