Welcome to Tharikida UI Docs! π Here's how you can quickly set up and start using our component library to build awesome interfaces effortlessly.
npm install tharikida-ui
import { ThemeProvider } from 'tharikida-ui';
function App() {
return (
<ThemeProvider>
<Button> Hello, Tharikida UI! </Button>
</ThemeProvider>
);
}
export default App;import { Button } from 'tharikida-ui';
export default function Example() {
return (
<div>
<Button type="primary">Primary Button</Button>
<Button type="secondary">Secondary Button</Button>
</div>
);
}
<ThemeProvider primaryColor="#ff5733" secondaryColor="#33c1ff" fontFamily="'Poppins', sans-serif" > <Button type="primary">Custom Themed Button</Button> </ThemeProvider>