@cmk/fe_utils
Version:
frontend utility library
14 lines (12 loc) • 325 B
TypeScript
import { LinkWrapperProps } from './LinkWrapper';
import { FC } from 'react';
export declare const linkEditorComponentDef: {
type: "Link";
props: {
children: string;
};
icon: string;
category: "basic";
component: FC<LinkWrapperProps>;
schema: import('../..').ExtendedObjectSchemaType;
};