abdul is a design system built for Ped Inc using Modulz
Using this package
Step 1: Install abdul from npm
Install @peduarte/abdul using your package manager:
yarn add @peduarte/abdul
Step 2: Import & use your components
Your components are ready to use! All components are imported directory from @peduarte/abdul:
import { Card, Input, Box, Container } from '@peduarte/abdul';
Step 3: Wrap your app in AbdulProvider
To access the default theme, you must import and wrap your app with the AbdulProvider
:
import { AbdulProvider } from '@peduarte/abdul';
const App = () => <AbdulProvider>Hey there👋</AbdulProvider>;