Files
Archer f00adcb02d fix: surrender;perf: llm response (#6190)
* feat: workflow route to detail

* llm response

* fix: surrender

* fix: surrender

* fix: surrender

* fix: test
2026-01-05 20:53:18 +08:00

57 lines
1.2 KiB
TypeScript

import React from 'react';
import { Flex, type FlexProps } from '@chakra-ui/react';
import MyIcon from './index';
import MyTooltip from '../MyTooltip';
type Props = FlexProps & {
icon: string;
size?: string;
hoverColor?: string;
hoverBg?: string;
hoverBorderColor?: string;
tip?: string;
isLoading?: boolean;
};
const MyIconButton = ({
icon,
onClick,
hoverColor = 'primary.600',
hoverBg = 'myGray.05',
hoverBorderColor = '',
size = '1rem',
tip,
isLoading = false,
...props
}: Props) => {
return (
<MyTooltip label={tip} shouldWrapChildren={false}>
<Flex
position={'relative'}
p={1}
color={'myGray.500'}
rounded={'sm'}
alignItems={'center'}
bg={'transparent'}
transition={'background 0.1s'}
cursor={'pointer'}
_hover={{
bg: hoverBg,
color: hoverColor,
borderColor: hoverBorderColor
}}
onClick={(e) => {
if (isLoading) return;
onClick?.(e);
}}
sx={{ userSelect: 'none' }}
{...props}
>
<MyIcon name={isLoading ? 'common/loading' : (icon as any)} w={size} />
</Flex>
</MyTooltip>
);
};
export default MyIconButton;