@net-advantage/nabs-ui-textbox
v0.63.0
Published
Reusable React textbox control for the Nabs UI library.
Readme
nabs-ui-textbox
Reusable React textbox control for the Nabs UI library.
Usage
import { Textbox } from "@net-advantage/nabs-ui-textbox";
export function Example() {
return (
<Textbox
label="Email address"
labelPosition="top"
placeholder="[email protected]"
/>
);
}Props
labelrenders an associated label above or beside the input.labelPositionsupportsnone,top, andleft.inputClassNameapplies classes to the underlying<input>.labelClassNameapplies classes to the rendered<label>.
The component forwards its ref to the underlying input element and re-exports Textbox and TextboxProps from the package entry point.
