@dndbuilder.com/react
Version:
Drag and drop builder for React
15 lines (14 loc) • 512 B
TypeScript
import { SettingsType } from '../../types';
import { FC, HTMLAttributes } from 'react';
export type FontFamilyControlProps = {
mode?: string;
responsive?: boolean;
type: SettingsType;
fieldName: string;
label?: string;
side?: "top" | "right" | "left" | "bottom";
align?: "start" | "center" | "end";
avoidCollisions?: boolean;
} & HTMLAttributes<HTMLDivElement>;
export declare const FontFamilyControl: FC<FontFamilyControlProps>;
//# sourceMappingURL=font-family.control.d.ts.map