import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; import handleCopy from "@/components/handleCopy"; import { Script } from "@/lib/types"; export default function DefaultPassword({ item }: { item: Script }) { const hasDefaultLogin = item?.expand?.default_login !== undefined; return (
{hasDefaultLogin && (

Default Login Credentials

You can use the following credentials to login to the {""} {item.title} {item.item_type}.

Username:{" "}
Password:{" "}
)}
); }