@nitrogenbuilder/core
Version:
CMS Agnostic Page Builder for React projects
14 lines (13 loc) • 513 B
TypeScript
import { BuilderModule, PropUrl } from '../../../@types/settings.js';
import './CtrlUrl.scss';
type ControlProps = {
updateProps: (id: string, path: string, value: any) => void;
deleteProp: (path: string) => void;
currMod: BuilderModule;
updatePath: string;
prop: PropUrl;
value: any;
inheritVal?: boolean;
};
export default function CtrlUrl({ currMod, updatePath, prop, value, inheritVal, deleteProp, updateProps, }: ControlProps): import("react/jsx-runtime").JSX.Element;
export {};