import { Text } from "preact-i18n"; import styled from "styled-components"; import { Children } from "../../types/Preact"; import Tippy, { TippyProps } from '@tippyjs/react'; type Props = Omit & { children: Children; content: Children; } export default function Tooltip(props: Props) { const { children, content, ...tippyProps } = props; return ( {/* // @ts-expect-error */}
{ children }
); } const PermissionTooltipBase = styled.div` display: flex; align-items: center; flex-direction: column; span { font-weight: 700; text-transform: uppercase; color: var(--secondary-foreground); font-size: 11px; } code { font-family: var(--monoscape-font); } `; export function PermissionTooltip(props: Omit & { permission: string }) { const { permission, ...tooltipProps } = props; return ( { permission } } {...tooltipProps} /> ) }