BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/@nordaun/ui/password

Password

nordaun-ui/password
FreeBlock

A super simple password input component with a toggle options that hides or reveals your password.

Live preview

live · rendered by the registry
Rendered by @nordaun/ui on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://ui.nordaun.com/r/password.json

Source

src/components/ui/password.tsxui.nordaun.com/r/password.json
1"use client";
2
3import * as React from "react";
4
5import { Button } from "@/components/ui/button";
6import {
7 InputGroup,
8 InputGroupAddon,
9 InputGroupInput,
10} from "@/components/ui/input-group";
11import { Eye, EyeClosed } from "lucide-react";
12
13function Password({ className, ...props }: React.ComponentProps<"input">) {
14 const [visible, setVisible] = React.useState<boolean>(false);
15
16 return (
17 <InputGroup>
18 <InputGroupInput
19 type={visible ? "text" : "password"}
20 {...props}
21 className={className}
22 />
23 <InputGroupAddon align={"inline-end"}>
24 <Button
25 variant={"link"}
26 type="button"
27 onClick={() => setVisible(!visible)}
28 >
29 {visible ? <Eye /> : <EyeClosed />}
30 </Button>
31 </InputGroupAddon>
32 </InputGroup>
33 );
34}
35
36export { Password };

What it pulls in

npm packages

  • lucide-react

Other registry items

  • button
  • input-group

Files it writes

  • src/components/ui/password.tsx

Facts

Registry
@nordaun/ui
Type
registry:block
Access
Free
Files written
1
Licence
MIT
In the index
at or before 2026-08-12
Last confirmed
today

Go to the source

Docs on @nordaun/ui ui.nordaun.com nordaun/ui on GitHub Raw registry item This item as JSON

More from @nordaun/ui

All 8 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Audioaudio@nordaun/uiBlocksFree1 dep
Filefile@nordaun/uiBlocksFree1 dep · 3 files
Flagflag@nordaun/uiBlocksFreeno deps · 2 files
Loadingloading@nordaun/uiBlocksFreeno deps
Mapmap@nordaun/uiBlocksFree2 deps · 2 files
Phonephone@nordaun/uiBlocksFree2 deps · 3 files
Videovideo@nordaun/uiBlocksFree1 dep · 2 files

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex