EasyBag UI Catalog
Design system and component library for EasyBag e-commerce platform.
Components
Button
Primary and secondary action buttons
Link
Text links with various styles
Icon
SVG icon wrapper component
TextField
Text input fields with labels
Checkbox
Checkbox and radio inputs
Select
Dropdown select fields
ProductCard
Product listing card
Price
Price display component
Tag
Tags and badges
Alert
Alert and notification messages
Quick Start
import { Button } from '@/components/core/Button';
import { TextField } from '@/components/fields/TextField';
import { ProductCard } from '@/components/items/ProductCard';
export function MyComponent() {
return (
<div>
<Button variant="primary" title="Click me" />
<TextField label="Email" type="email" />
<ProductCard title="Product" url="/product" />
</div>
);
}