perf: pay ui;update version doc (#3439)

* perf: pay ui

* update doc
This commit is contained in:
Archer
2024-12-19 17:54:56 +08:00
committed by GitHub
parent a997f277ad
commit 922cb433d3
9 changed files with 43 additions and 38 deletions

View File

@@ -8,9 +8,17 @@ const LightTip = ({
text: string;
} & StackProps) => {
return (
<HStack px="3" py="1" color="primary.600" bgColor="primary.50" borderRadius="md" {...props}>
<HStack
px="3"
py="1"
color="primary.600"
bgColor="primary.50"
borderRadius="md"
fontSize={'sm'}
{...props}
>
<Icon name="common/info" w="1rem" />
<Box fontSize={'sm'}>{text}</Box>
<Box>{text}</Box>
</HStack>
);
};