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