add elements components

This commit is contained in:
Rami Bitar
2026-06-09 14:43:25 -04:00
parent d7ebc09cbb
commit 3ed7e027c2
13 changed files with 558 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
import type { ElementConfig } from "./types"
export const IconConfig: ElementConfig = {
Icon: {
label: "Icon",
fields: {
name: {
type: "icon",
label: "Icon",
},
size: {
type: "text",
label: "Size",
},
className: {
type: "text",
label: "Class Name",
},
},
},
}
export default IconConfig