/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import { SubTitle } from "../layout/sub-title"; import type { AppPreferenceRegistration } from "./app-preferences/app-preference-registration"; import React from "react"; import { cssNames } from "../../../renderer/utils"; interface ExtensionSettingsProps { setting: AppPreferenceRegistration; size: "small" | "normal" } export function ExtensionSettings({ setting, size }: ExtensionSettingsProps) { const { title, id, components: { Hint, Input }, } = setting; return (

); }