Tooltip

A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.
# Demo
# Attributes
NameTypeDefaultDetails
classNamestring' 'You can customise by passing tailwind classes.
triggerClassNamestring' 'You can customise by passing tailwind classes.
messagestringRequiredYou can pass message for the tooltip content.
childrenReactNodeRequiredYou 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;