@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
15 lines (14 loc) • 415 B
TypeScript
import React from "react";
interface LabelWithIconProps {
icon: React.ReactNode;
title?: string;
small?: boolean;
className?: string;
required?: boolean;
}
/**
* Render the label of with an icon and the title of a property
* @group Form custom fields
*/
export declare const LabelWithIcon: React.ForwardRefExoticComponent<LabelWithIconProps & React.RefAttributes<HTMLDivElement>>;
export {};