EasyBag UI Catalog

Design system and component library for EasyBag e-commerce platform.

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