perf: backup import (#4866)

* i18n

* remove invalid code

* perf: backup import

* backup tip

* fix: indexsize invalid
This commit is contained in:
Archer
2025-05-22 15:53:51 +08:00
committed by GitHub
parent dd3c251603
commit 88bd3aaa9e
67 changed files with 751 additions and 388 deletions

View File

@@ -3,8 +3,10 @@ import { Box, HStack, Icon, type StackProps } from '@chakra-ui/react';
const LightTip = ({
text,
icon = 'common/info',
...props
}: {
icon?: string;
text: string;
} & StackProps) => {
return (
@@ -17,7 +19,7 @@ const LightTip = ({
fontSize={'sm'}
{...props}
>
<Icon name="common/info" w="1rem" />
<Icon name={icon} w="1rem" />
<Box>{text}</Box>
</HStack>
);