@contentstack/live-preview-utils
Version:
Contentstack provides the Live Preview SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane.
17 lines (13 loc) • 439 B
TypeScript
import React from 'preact/compat';
/** @jsxImportSource preact */
declare const iconComponents: {
Cancel: (props: any) => React.JSX.Element;
Delete: (props: any) => React.JSX.Element;
Edit: (props: any) => React.JSX.Element;
RightMarkActive: (props: any) => React.JSX.Element;
Indicator: ({ active }: {
active?: boolean;
className?: string;
}) => React.JSX.Element;
};
export { iconComponents };