Documentation
Tooltip

Tooltip

The Tooltip component displays additional information when users interact with an element, such as hovering, clicking, or focusing. It supports customizable triggers, placements, and styles, making it a versatile tool for enhancing user experience.

Usage

First of all, you need to import the Tooltip component from the kitchn package.

import { Tooltip } from "kitchn"

Default

Tooltip
Code Editor
<Tooltip text={"Push to Git and your website is live."}>
  {"Tooltip"}
</Tooltip>

Trigger

Click me
Code Editor
<Tooltip
  text={"Push to Git and your website is live."}
  trigger={"click"}
  type={"dark"}
>
  <span>{"Click me"}</span>
</Tooltip>

With Components

1000+
Code Editor
<Container align={"center"} gap={"normal"} row>
  <Tooltip text={"Push to Git and your website is live."} type={"dark"}>
    <Button>{"Button"}</Button>
  </Tooltip>
  <Tooltip text={"Push to Git and your website is live."} type={"dark"}>
    <Badge>{"1000+"}</Badge>
  </Tooltip>
  <Tooltip text={"Push to Git and your website is live."} type={"dark"}>
    <Link href={"#"}>{"Hyperlink"}</Link>
  </Tooltip>
</Container>

Custom Content

Top
Bottom
Code Editor
<Container gap={"normal"}>
  <Tooltip
    text={
      <>
        {"Perfect for working with a "}
        <InlineCode>{"CMS"}</InlineCode>
        {"."}
      </>
    }
  >
    <span>{"Top"}</span>
  </Tooltip>
  <Tooltip
    text={
      <>
        <Text weight={"bold"} span>
          {"Perfect"}
        </Text>{" "}
        {"for working with a CMS."}
      </>
    }
    placement={"bottom"}
  >
    <span>{"Bottom"}</span>
  </Tooltip>
</Container>

Types

Dark
Info
Success
Warning
Danger
Secondary
Code Editor
<Container gap={"normal"}>
  <Tooltip text={"Perfect for working with a CMS."} type={"dark"}>
    <span>{"Dark"}</span>
  </Tooltip>
  <Tooltip text={"Perfect for working with a CMS."} type={"info"}>
    <span>{"Info"}</span>
  </Tooltip>
  <Tooltip text={"Perfect for working with a CMS."} type={"success"}>
    <span>{"Success"}</span>
  </Tooltip>
  <Tooltip text={"Perfect for working with a CMS."} type={"warning"}>
    <span>{"Warning"}</span>
  </Tooltip>
  <Tooltip text={"Perfect for working with a CMS."} type={"danger"}>
    <span>{"Danger"}</span>
  </Tooltip>
  <Tooltip
    text={"Perfect for working with a CMS."}
    type={"secondary"}
  >
    <span>{"Secondary"}</span>
  </Tooltip>
</Container>

Placement

LEFT
Code Editor
<Container gap={"normal"} align={"center"} row>
  <Container>
    <Tooltip text={"The Evil Rabbit Jumped over the Fence"}>
      <Icon icon={RiInformationFill} />
    </Tooltip>
  </Container>

  <Container>
    <Tooltip
      text={"The Evil Rabbit Jumped over the Fence"}
      placement={"bottom"}
    >
      <Button size={"small"}>{"Bottom"}</Button>
    </Tooltip>
  </Container>

  <Container>
    <Tooltip
      text={"The Evil Rabbit Jumped over the Fence"}
      placement={"left"}
    >
      <Badge size={"small"}>{"LEFT"}</Badge>
    </Tooltip>
  </Container>

  <Container>
    <Tooltip
      text={"The Evil Rabbit Jumped over the Fence"}
      placement={"right"}
    >
      <Spinner size={20} />
    </Tooltip>
  </Container>
</Container>

Props

NameTypeDefaultRequiredDescription
textReact.ReactNodeundefinedYesThe content to display inside the tooltip.
placementTooltipPlacement"top"NoSpecifies where the tooltip should appear relative to the target element (top, right, bottom, left).
typeTooltipTypes"primary"NoDefines the tooltip's color from accent colors
visiblebooleanundefinedNoControls the visibility of the tooltip programmatically.
initialVisiblebooleanfalseNoSets the initial visibility state of the tooltip.
hideArrowbooleanfalseNoHides the tooltip's arrow if set to true.
triggerTooltipTriggers"hover"NoSpecifies the event that triggers the tooltip to appear (hover, click, focus).
enterDelaynumber150NoDelay in milliseconds before the tooltip becomes visible.
leaveDelaynumber150NoDelay in milliseconds before the tooltip disappears.
offsetnumber12NoOffset distance between the tooltip and the target element.
onVisibleChangeTooltipOnVisibleChange() => {}NoCallback function invoked when the tooltip visibility changes.
onContentClickTooltipOnContentClick() => {}NoCallback function invoked when the tooltip content is clicked.
Last updated on