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