Input
Text input with optional adornment slots. Extends the native input API — omits the numeric size attr and replaces it with a token-based size prop.
Sizes
With adornments
✓
States
import { Input } from "@brijbyte/agentic-ui/input";
import "@brijbyte/agentic-ui/input.css";
export default function StatesDemo() {
return (
<div style={{ display: "flex", flexDirection: "column", gap: "var(--space-3)", width: 280 }}>
<Input disabled placeholder="Disabled" />
<Input invalid defaultValue="bad-value" />
</div>
);
}