import * as React from 'react'; import { CircleHelpIcon } from 'lucide-react'; import { Popover } from '#components'; export const FieldGroupDescription: React.FC<{ description?: null | string }> = ({ description }) => description ? (

{description}

) : null;