mirror of
https://github.com/supabase/supabase.git
synced 2026-09-09 19:42:46 +08:00
## Problem Now that we migrated old components to their new shadcn alternatives, we don't need the `_Shadcn_` suffix anymore. ## Solution Remove it <img width="659" height="609" alt="image" src="https://github.com/user-attachments/assets/2d7271a9-066a-4dcc-92fe-729b106d2c2f" />
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import { Input } from 'ui'
|
|
|
|
export default function InputDisabled() {
|
|
return <Input disabled type="email" placeholder="Email" />
|
|
}
|