mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
32 lines
744 B
TypeScript
32 lines
744 B
TypeScript
import { EyeOffIcon } from "lucide-react"
|
|
|
|
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/styles/base-nova/ui/field"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupInput,
|
|
} from "@/styles/base-nova/ui/input-group"
|
|
|
|
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>
|
|
)
|
|
}
|