AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

React Components

skill-krishna-modi12-frontend-design-pro-react-components · by Krishna-Modi12

Reusable React component APIs — buttons, cards, modals, tabs, dropdowns, shadcn/Radix primitives, compound components. Use when building or refining a single reusable component or a small family of them — button, card, modal, dropdown, tabs, accordion, tooltip, badge, avatar, select, popover — or when the request mentions shadcn/ui, Radix, compound components, forwardRef, CVA or asChild. Not for…

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-krishna-modi12-frontend-design-pro-react-components

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-krishna-modi12-frontend-design-pro-react-components)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
today

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of React Components? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

React Components

When to Use

Building or refining a single reusable component or a small family of them: button, card, modal/dialog, dropdown, tabs, accordion, tooltip, badge, avatar, select, popover. Also any request mentioning shadcn/ui, Radix, compound components, forwardRef, CVA, or asChild. For a whole page use landing-pages; for inputs with validation use forms.

Stack

React 19 · TypeScript strict · Tailwind v4 · shadcn/ui + Radix · Next.js App Router (default)

Core Rules

  1. Prop taxonomy. Behavioural props take native event names (onClick, onSubmit, onOpenChange) — never onPress on web. Stylistic props (variant, size) map to CVA variants. Compositional props are children, asChild, render.
  2. Ref forwarding. React 19 passes ref as an ordinary prop; forwardRef remains correct for React 18 support and for anything extending shadcn/Radix. Pick one per codebase. When forwardRef is used it must take (props, ref), return JSX, be exported, and set displayName.
  3. Base types from the element. interface XProps extends React.ComponentPropsWithoutRef — never re-declare onClick/disabled by hand.
  4. Spread last. {...props} after your own attributes so consumers can override; merge className through cn() with consumer classes winning.
  5. Variants via CVA. Export VariantProps so wrappers can be typed. Discriminated string unions, never boolean soup (primary, large).
  6. Composition over configuration. Three or more boolean props means the component should be compound instead. `, not `.
  7. Controlled contract. Overlays use open + onOpenChange (+ defaultOpen). Inputs support both controlled and uncontrolled. State-heavy components are always controlled.
  8. asChild vs as. asChild (Radix Slot) for behaviour wrappers; as only for typography/layout primitives. Never both on one component.
  9. Every interactive state. default · hover · active · focus-visible · disabled · loading. Focus rings are focus-visible:ring-2 ring-offset-2, never outline: none without a replacement.

Patterns

  • Compound + context — parent owns state, parts read it via a { state, actions, meta } context. Named exports, never dot-notation-only.
  • Slot compositionasChild merges props onto the child element for triggers.
  • Polymorphic textas on Heading/Text changes the tag, not the behaviour.
  • Controlled/uncontrolled duality — internal state falls back when the value prop is absent.

Examples

examples/good-composition-patterns.tsx (compound Tabs, lifted state, asChild, CVA) · examples/good-shadcn.tsx (Dialog, Command, DataTable, Form) · examples/good-react19.tsx (useOptimistic, useActionState, Server Actions) · examples/good-surgical-change.tsx (scoped edit discipline).

Reference Index

Load only for the specific task:

| Task | Load | |---|---| | Advanced composition, compound components, API anti-patterns, full forwardRef rules | core/component-api-deep.md | | Hooks, context, error boundaries, React 19 APIs | references/react-patterns.md | | The layer under shadcn — which package to install, data-state styling contract, asChild/Slot rules, exit animations, focus and dismissal, per-primitive labelling | references/radix-primitives.md | | shadcn component usage, theming, cn(), CLI | references/shadcn.md | | Community components, MagicUI/Aceternity, registries | references/shadcn-ecosystem.md | | Icons, avatars, icon sizing and a11y | ../iconography/SKILL.md | | OKLCH technique, 8 interactive states, anchor positioning | references/impeccable-techniques.md |

Constraints

TypeScript strict, exported prop interfaces, no implicit any · OKLCH tokens, no raw hex · COMP-01 forwardRef correctness · TS-01-AST declared Props must be used · A11Y-01/02 real ARIA and focus-visible on interactive elements only · four states with no mount-time fake delays · prefers-reduced-motion respected.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.