mirror of
https://github.com/Amperra-Group/xcs.git
synced 2025-10-15 11:52:18 -06:00
7 lines
253 B
TypeScript
7 lines
253 B
TypeScript
import { Avatar, Tooltip, useColorModeValue } from "@chakra-ui/react";
|
|
|
|
export const TooltipAvatar: typeof Avatar = (props: any) => (
|
|
<Tooltip label={props.name}>
|
|
<Avatar {...props} bg={useColorModeValue('gray.200', 'gray.700')} />
|
|
</Tooltip>
|
|
); |