mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-29 23:55:02 +00:00
15 lines
452 B
TypeScript
15 lines
452 B
TypeScript
import { Field, FieldDescription, FieldLabel } from "@/examples/base/ui/field"
|
|
import { Input } from "@/examples/base/ui/input"
|
|
|
|
export function InputInvalid() {
|
|
return (
|
|
<Field data-invalid>
|
|
<FieldLabel htmlFor="input-invalid">Invalid Input</FieldLabel>
|
|
<Input id="input-invalid" placeholder="Error" aria-invalid />
|
|
<FieldDescription>
|
|
This field contains validation errors.
|
|
</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|