Magic UI

iPhone 15 Pro

Install component

npxshadcn@latest add "https://21st.dev/r/magicui/iphone-15-pro"
import { Iphone15Pro } from "@/components/ui/iphone-15-pro"

function Iphone15ProDemo() {
  return (
    <div className="relative">
      <Iphone15Pro className="size-full scale-50" />
    </div>
  )
}

function Iphone15ProWithCustomImage() {
  return (
    <div className="relative">
      <Iphone15Pro
        className="size-full"
        src="https://via.placeholder.com/430x880"
      />
    </div>
  )
}

export default {
  Iphone15ProDemo,
  Iphone15ProWithCustomImage,
}