Skip to main content

Installation

Tip Top UI is available on npmjs.org and can be installed using a package manager like npm, yarn, or pnpm

npm install @tiptopui/components

Usage

The following is a simple example of using a default button component.

// import the component from Tip Top UI
import { Button } from "@tiptopui/components";

// import the styles for Tip Top UI
import "@tiptopui/components/dist/index.css";

// use the component in your React application
function App() {
return <Button>Hello World</Button>;
}