import { z } from 'zod'; import React from 'react'; export const liveActivitySchema = z.object({ orgId: z.string(), icon: z.custom< React.ReactElement<{ className?: string; width?: number | string; height?: number | string }> >(), actionKey: z.string(), subjectKey: z.string().optional(), timeKey: z.string(), timeValue: z.number(), });