next 13 with shadcn ui input field example

next 13 with shadcn ui input field example

August 19, 2023 By Aaronn

In this tutorial, we will see how to use input field in next js 13 with shadcn ui. First you need to setup next js 13 with shadcn ui project.

how to use shadcn ui in next js 13


Before use input field in next js 13 with shadcn ui you need to install npx shadcn-ui@latest add input field.

npx shadcn-ui@latest add input

or

npx shadcn-ui@latest add


Next 13 with Shadcn UI Input Field Example

1. Create next js 13 with shadcn ui input field using shadcn-ui Input component.

import { Input } from "@/components/ui/input"

export default function InputDemo() {
  return <Input type="email" placeholder="Email" />
}
shadcn ui email input field

shadcn ui email input field

2. next js 13 with shadcn ui disabled input field.

import { Input } from "@/components/ui/input"

export default function InputDisabled() {
  return <Input disabled type="email" placeholder="Email" />
}
shadcn ui disabled input field

shadcn ui disabled input field

3. next js 13 with shadcn ui file input field.

import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"

export default function InputFile() {
  return (
    <div className="grid w-full max-w-sm items-center gap-1.5">
      <Label htmlFor="picture">Picture</Label>
      <Input id="picture" type="file" />
    </div>
  )
}
shadcn ui file input field

shadcn ui file input field

4. next js 13 with shadcn ui label with input field.

import { Input } from "@/components/ui/input"
import { Label } from "@/components/ui/label"

export default function InputWithLabel() {
  return (
    <div className="grid w-full max-w-sm items-center gap-1.5">
      <Label htmlFor="email">Email</Label>
      <Input type="email" id="email" placeholder="Email" />
    </div>
  )
}
next js 13 shadcn ui label with input field

next js 13 shadcn ui label with input field

5. next js 13 with shadcn ui input field with button.

import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"

export default function InputWithButton() {
  return (
    <div className="flex w-full max-w-sm items-center space-x-2">
      <Input type="email" placeholder="Email" />
      <Button type="submit">Subscribe</Button>
    </div>
  )
}
shadcn ui input field with button

shadcn ui input field with button

Related Posts

create a accordion in nextjs 13 with shadcn ui

create sidebar in next 13 with shadcn ui

create footer section in next 13 with shadcn ui

create file upload in nextjs 13 with shadcn ui

next 13 with shadcn ui cards example

next 13 with shadcn ui search bar example

next 13 with shadcn ui login page example

next 13 with shadcn ui sign up form example

next 13 with shadcn ui radio group example

next 13 with shadcn ui buttons example

next 13 with shadcn ui pagination example

next 13 with shadcn ui table example

next 13 with shadcn ui checkbox example

next 13 with shadcn ui dropdown menu example

how to use skeleton loading next 13 with shadcn ui

how to use data table next 13 with shadcn ui

how to use modal dialog next 13 with shadcn ui

how to use tabs next 13 with shadcn ui

how to use toggle switch next 13 with shadcn ui