import { z } from 'zod'; import React from 'react'; export const howItWorksStepSchema = z.object({ icon: z.custom< React.ReactElement<{ className?: string; width?: number | string; height?: number | string }> >(), titleKey: z.string(), textKey: z.string(), });