import React, { useCallback, useState } from "react"; import styled from "styled-components/macro"; import Tooltip from "../Tooltip"; const QuestionWrapper = styled.div` display: flex; align-items: center; justify-content: center; padding: 0px; width: 18px; height: 18px; border: none; background: none; outline: none; cursor: default; border-radius: 36px; font-size: 12px; background-color: ${({ theme }) => theme.bg2}; color: ${({ theme }) => theme.text2}; :hover, :focus { opacity: 0.7; } `; const LightQuestionWrapper = styled.div` display: flex; align-items: center; justify-content: center; padding: 0.2rem; border: none; background: none; outline: none; cursor: default; border-radius: 36px; width: 24px; height: 24px; background-color: rgba(255, 255, 255, 0.1); color: ${({ theme }) => theme.white}; :hover, :focus { opacity: 0.7; } `; const QuestionMark = styled.span` font-size: 14px; `; export default function QuestionHelper({ text, }: { text: string; size?: number; }) { const [show, setShow] = useState(false); const open = useCallback(() => setShow(true), [setShow]); const close = useCallback(() => setShow(false), [setShow]); return ( ? ); } export function LightQuestionHelper({ text }: { text: string }) { const [show, setShow] = useState(false); const open = useCallback(() => setShow(true), [setShow]); const close = useCallback(() => setShow(false), [setShow]); return ( ? ); }