mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 23:24:13 +00:00
27 lines
730 B
TypeScript
27 lines
730 B
TypeScript
import { Field, FieldDescription, FieldLabel } from "@/examples/base/ui/field"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupInput,
|
|
} from "@/examples/base/ui/input-group"
|
|
import { EyeOffIcon } from "lucide-react"
|
|
|
|
export function InputGroupInlineEnd() {
|
|
return (
|
|
<Field className="max-w-sm">
|
|
<FieldLabel htmlFor="inline-end-input">Input</FieldLabel>
|
|
<InputGroup>
|
|
<InputGroupInput
|
|
id="inline-end-input"
|
|
type="password"
|
|
placeholder="Enter password"
|
|
/>
|
|
<InputGroupAddon align="inline-end">
|
|
<EyeOffIcon />
|
|
</InputGroupAddon>
|
|
</InputGroup>
|
|
<FieldDescription>Icon positioned at the end.</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|