import type { Meta } from "@storybook/react" import { InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot } from "./InputOtp" export default { title: "input-otp/InputOTP", component: InputOTP, tags: ["autodocs"], parameters: { layout: "centered", }, } as Meta export const Basic = () => ( {Array.from({ length: 6 }).map((_, index) => ( ))} ) export const WithSeparator = () => { return ( ) }