#
Input boxes: the blank spaces where you type stuff.
#
Preview
#
Code
"use client" // for nextJS
import {Input1} from "mvk-ui"
const App = ()=> {
return(
<div style={{margin: '50px'}}>
<Input1 label="Username" placeholder="Username..."/>
<Input1 label="Password" placeholder="Password..." type="password"/>
<Input1 label="Email" placeholder="Email..." type="email"/>
</div>
)
}
export default App;