chore(ui): login page & workflow page (#3046)
* login page & number input & multirow select & llm select * workflow * adjust nodes
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user