import { User } from "revolt.js"; import styled from "styled-components/macro"; import { Children } from "../../../types/Preact"; import Tooltip from "../Tooltip"; import { Username } from "./UserShort"; import UserStatus from "./UserStatus"; interface Props { user?: User; children: Children; } const Base = styled.div` display: flex; flex-direction: column; .username { font-size: 13px; font-weight: 600; } .status { font-size: 11px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .tip { display: flex; align-items: center; gap: 4px; margin-top: 2px; color: var(--secondary-foreground); } `; export default function UserHover({ user, children }: Props) { return ( {/*
Right-click on the avatar to access the quick menu
*/} }> {children}
); }