import Icons from "@/components/ui/icons"; import { keyFormModal } from "@/pages/keychains/components/form"; import { initialValues as keychainInitialValues } from "@/pages/keychains/schema/form"; import React from "react"; import { Button, Label, XStack } from "tamagui"; type Props = { type?: "user" | "rsa" | "pve" | "cert"; }; export default function CredentialsSection({ type = "user" }: Props) { return ( ); }