@meho/sefar-web-uikit
v0.1.7
Published
**Sefar** contains a collection of reusable components that can be used to build web applications. It is built using React and Tailwind CSS.
Downloads
4
Readme
Sefar Web UI Kit
Sefar contains a collection of reusable components that can be used to build web applications. It is built using React and Tailwind CSS.
⚡ Quick Start
# If you are using yarn
yarn install @yatechnologies/sefar-web-uikit
# If you are using npm
npm install @yatechnologies/sefar-web-uikit
🚀 Usage
import { Typography } from "@yatechnologies/sefar-web-uikit";
function App() {
return (
<div>
<Typography variant="h1">Hello World</Typography>
</div>
);
}