wx-svelte-editor
Version:
Svelte component for creating forms to edit structured data on a page (info cards, text blocks, table rows, etc
18 lines (17 loc) • 333 B
JavaScript
export const Spacer = () => ({ comp: "spacer" });
export const CancelButton = _ => ({
comp: "button",
text: _("Cancel"),
id: "cancel",
});
export const SaveButton = _ => ({
type: "primary",
comp: "button",
text: _("Save"),
id: "save",
});
export const CloseIcon = () => ({
comp: "icon",
icon: "wxi-close",
id: "close",
});