"use client"; import { Tabs, Tab } from "../docs-tabs"; interface IframeSwitcherProps { id?: string; exampleUrl: string; codeUrl: string; exampleLabel?: string; codeLabel?: string; height?: string; } export function IframeSwitcher({ id, exampleUrl, codeUrl, exampleLabel = "Demo", codeLabel = "Code", height = "600px", }: IframeSwitcherProps) { return (