Create a custom React component with Tailwind styling
/plugin marketplace add marcioaltoe/claude-craftkit/plugin install ui@claude-craftkit# Create Custom Component Generate a custom React component with Tailwind CSS and TypeScript. ## Instructions 1. Ask for component details: - Component name - Component type (functional, with state, etc.) - Props needed - Styling requirements 2. Create component file in appropriate location: - `src/components/` for shared components - `src/features/` for feature-specific components - `src/routes/` for route-specific components (TanStack Router) 3. Generate component with: - TypeScript interface for props - Proper React patterns (hooks, composition, etc.) - T...