Get Started
Components
Dev Tools
More Guides
Tooltip
A Tooltip component is a small, informative pop-up that appears when a user hovers over or focuses on an element, such as a button or icon. It provides additional context or explanations about that element without cluttering the interface. Tooltips enhance user experience by offering helpful hints, instructions, or details, ensuring that information is accessible without overwhelming the layout.
# Demo
# Attributes
Name | Type | Default | Details |
---|---|---|---|
className | string | ' ' | You can customise by passing tailwind classes. |
triggerClassName | string | ' ' | You can customise by passing tailwind classes. |
message | string | Required | You can pass message for the tooltip content. |
children | ReactNode | Required | You can pass tooltip content as children. |
# Usage
import { NTooltip, NButton } from 'nayan';
const Tooltip = () => {
return (
<NTooltip message="This is sample tool tip! This is sample tool tip This is sample tool tip This is sample tool tip ">
<NButton>Show Tooltip</NButton>
</NTooltip>
);
};
export default Tooltip;
# Tags