eca619b79a
✨ Created complete atoms library (21 components): - Buttons: Button, IconButton with variants (primary, secondary, danger, ghost) - Inputs: TextInput, SearchInput, Textarea with validation support - Typography: Heading (h1-h6), Text (variants), Caption - Badges: Badge (5 variants), PriceBadge (formatted pricing) - Dividers: Horizontal/vertical separators 🎯 Updated existing components to use atoms: - CartProduct: Now uses Button, Text, Caption atoms - ReviewModal: Now uses Button, Textarea, Heading, Text atoms 📚 Added comprehensive documentation: - components/atoms/ATOMS.md: Complete atoms reference guide - Usage examples, theming, import patterns, accessibility 🏗️ Architecture improvements: - Foundation for molecules/organisms - Type-safe components with full TypeScript support - Consistent theming via CSS variables - Barrel exports for clean imports ✅ Verified: - npm run build: Success (✓ Compiled successfully) - npm run format: All files formatted - npm run lint: No new errors in atoms Next: Phase 2 - Create molecules (ProductCard, FormField, SearchBar, etc.) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
826 B
TypeScript
26 lines
826 B
TypeScript
"use client";
|
|
|
|
import type { TextareaProps } from "./Input.types";
|
|
|
|
export default function Textarea({
|
|
label,
|
|
error,
|
|
className = "",
|
|
...props
|
|
}: TextareaProps) {
|
|
return (
|
|
<div className="w-full">
|
|
{label && (
|
|
<label className="mb-1.5 block text-sm font-medium text-(--color-text-secondary)">
|
|
{label}
|
|
</label>
|
|
)}
|
|
<textarea
|
|
className={`text-foreground w-full resize-none rounded-xl border border-(--color-border) bg-transparent px-3 py-2.5 text-sm transition-colors placeholder:text-(--color-text-muted) focus:border-(--color-primary) focus:ring-2 focus:ring-(--color-primary)/20 focus:outline-none ${error ? "border-red-500" : ""} ${className}`}
|
|
{...props}
|
|
/>
|
|
{error && <p className="mt-1 text-xs text-red-500">{error}</p>}
|
|
</div>
|
|
);
|
|
}
|