Introduction
Welcome to Thrive Design System - Building Consistent, Accessible User Experiences
The Thrive Design System is a comprehensive collection of reusable components, design tokens, and guidelines that help teams build consistent, accessible, and delightful user experiences.
npm install @thrivecart/ui
# or
pnpm add @thrivecart/ui
# or
yarn add @thrivecart/uiimport { Button, Input, Card } from '@thrivecart/ui';
function MyApp() {
return (
<Card>
<CardHeader>
<CardTitle>Welcome</CardTitle>
</CardHeader>
<CardContent>
<Input placeholder="Enter your name" />
</CardContent>
<CardFooter>
<Button variant="primary">Submit</Button>
</CardFooter>
</Card>
);
}All components are built with accessibility in mind, featuring:
Consistent design decisions encoded as tokens:
Toggle between light and dark themes seamlessly:
Ready to explore? Check out our components or dive into the design tokens to understand our foundational principles.