@athosws/react-components
Version:
This is a set of useful ReactJS components developed by Athos.\n Email:ladiesman217.as@gmail.com
16 lines (13 loc) • 336 B
text/typescript
import { motion } from "motion/react";
import styled from "styled-components";
export const ATTooltipWrapper = styled(motion.div)`
position: fixed;
pointer-events: none;
user-select: none;
color: white;
background-color: black;
font-size: 0.9rem;
padding: 0.5rem;
border-radius: 0.3rem;
z-index: 999999999999999;
`;