Files
nextjs-ts/components/elements/Icon.config.tsx
2026-06-09 14:43:25 -04:00

24 lines
388 B
TypeScript

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