react-my-tooltip
v1.0.0
Published
A simple React tooltip component with TypeScript support
Downloads
2
Readme
🧩 react-tooltip-ts
A lightweight and easy-to-use React tooltip component built with TypeScript.
✨ Features
- ✅ Written in TypeScript
- 🎯 Lightweight and dependency-free (except React)
- 💅 Simple hover-to-show tooltips
- ⚙️ Easily customizable with your styles
📦 Installation
npm install react-tooltip-ts
# or
yarn add react-tooltip-ts🚀 Usage
import React from "react";
import { Tooltip } from "react-tooltip-ts";
const App = () => (
<div>
<Tooltip text="Hello from the tooltip!">
<button>Hover me</button>
</Tooltip>
</div>
);
export default App;
