mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 22:18:00 +08:00
598 B
598 B
description, globs, alwaysApply
| description | globs | alwaysApply | ||
|---|---|---|---|---|
| Studio: UI component system (packages/ui + shadcn primitives) |
|
false |
Studio component system
Our primitive component system lives in packages/ui and is based on shadcn/ui patterns.
- Prefer using components exported from
ui(e.g.import { Button } from 'ui'). - Prefer
_Shadcn_-suffixed components for form components e.g.Input_Shadcn_. - Avoid introducing new primitives unless explicitly requested.
- Browse available exports in
packages/ui/index.tsxbefore composing new UI.