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>
);
}