@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
16 lines (15 loc) • 471 B
TypeScript
import React from "react";
interface LabelWithIconAndTooltip {
icon: React.ReactNode;
title?: string;
small?: boolean;
className?: string;
required?: boolean;
propertyKey: string;
}
/**
* Render the label of with an icon and the title of a property
* @group Form custom fields
*/
export declare function LabelWithIconAndTooltip({ propertyKey, className, ...props }: LabelWithIconAndTooltip): import("react/jsx-runtime").JSX.Element;
export {};