Input
The input wraps Base UI’s input component with a small default style.
import { Input } from "density-base-ui";
export default function InputExample() {
return (
<label>
Project name
<Input placeholder="Roadmap planning" />
</label>
);
}