import React from 'react'; import { Box, HStack, Icon, type StackProps } from '@chakra-ui/react'; const LightTip = ({ text, icon = 'common/info', ...props }: { icon?: string; text: string; } & StackProps) => { return ( {text} ); }; export default LightTip;