Kantan-Components is a lightweight React Utility Components library. The project is still work-in-progress, and the Documentation can be found here.
Run the following command
npm install kantan-components
Or do it with yarn:
yarn add kantan-components
Next, import the component that you need. Learn more in the documentation.
import { Tooltip } from "kantan-components";
const App = () => (
<div>
<Tooltip text="default position">
<strong>Hover over.</strong>
</Tooltip>
</div>
);