React Component Writing Guide Styling | Scenario | Approach | | ---------------------------------------------------------- | -------------------------------------------------------------- | | Most cases | + (zero-runtime, module-level) | | Simple one-off | Inline attribute | | Truly dynamic (JS color fns like / ) | + — last resort | Component Priority 1. — project-specific reusable components 2. — headless primitives. If the component lives here, use it. Do NOT import the same-named root export. 3. — higher-level / antd-wrapping components (only when no base-ui equivalent) 4. antd — only when…