import type { UseFormReturn } from "react-hook-form"; import { FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage } from "~/client/components/ui/form"; import { Input } from "~/client/components/ui/input"; import { SecretInput } from "~/client/components/ui/secret-input"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "~/client/components/ui/select"; import type { NotificationFormValues } from "../create-notification-form"; type Props = { form: UseFormReturn; }; export const PushoverForm = ({ form }: Props) => { return ( <> ( User Key Your Pushover user key from the dashboard. )} /> ( API Token Application API token from your Pushover application. )} /> ( Devices (Optional) Comma-separated list of device names. Leave empty for all devices. )} /> ( Priority Message priority level. )} /> ); };