import { ReactNode } from 'react' import { cn } from 'ui' import { DocsButton } from '../DocsButton' export const FormHeader = ({ title, description, docsUrl, actions, className, }: { title: string description?: string docsUrl?: string actions?: ReactNode className?: string }) => { return (

{title}

{description &&

{description}

}
{docsUrl !== undefined && } {actions}
) }