UNPKG

@nitrogenbuilder/core

Version:

CMS Agnostic Page Builder for React projects

14 lines (13 loc) 523 B
import { BuilderModule, PropOther } from '../../../@types/settings.js'; import './CtrlNumber.scss'; type ControlProps = { updateProps: (id: string, path: string, value: any) => void; deleteProp: (path: string) => void; currMod: BuilderModule; updatePath: string; prop: PropOther; value: any; inheritVal?: boolean; }; export default function CtrlNumber({ currMod, updatePath, prop, value, inheritVal, deleteProp, updateProps, }: ControlProps): import("react/jsx-runtime").JSX.Element; export {};