diff --git a/pages/views/examples/example/form.njk b/pages/views/examples/example/form.njk
index feca554c..b4dea454 100644
--- a/pages/views/examples/example/form.njk
+++ b/pages/views/examples/example/form.njk
@@ -4,6 +4,7 @@ title: Example with form
+
+
+
-
+
-
+
+
diff --git a/pages/views/index.njk b/pages/views/index.njk
index 4c79ad28..fcb3bcca 100644
--- a/pages/views/index.njk
+++ b/pages/views/index.njk
@@ -25,7 +25,7 @@ isLandingPage: true
-
+
@@ -34,6 +34,7 @@ isLandingPage: true
+
diff --git a/src/plugins/header/header.ts b/src/plugins/header/header.ts
index 71102fcb..c6252ced 100644
--- a/src/plugins/header/header.ts
+++ b/src/plugins/header/header.ts
@@ -1,7 +1,5 @@
import {UIPPlugin} from '../../core/base/plugin';
-import {UIPCopy} from '../copy/uip-copy';
import {UIPOptions} from './options/options';
-import {UIPOptionIcons} from './options/option-icons';
import {UIPSnippets} from './snippets/snippets';
/**
@@ -20,7 +18,6 @@ export class UIPHeader extends UIPPlugin {
protected autofill(): void {
this.renderSnippets();
this.renderOptions();
- this.renderCopy();
}
/** Renders {@link UIPSnippets} element */
@@ -36,9 +33,4 @@ export class UIPHeader extends UIPPlugin {
const optionsEl = document.createElement(UIPOptions.is);
this.append(optionsEl);
}
-
- /** Renders copy icon */
- protected renderCopy(): void {
- this.append(UIPCopy.create(UIPOptionIcons.copySVG, 'copy-icon'));
- }
}
diff --git a/src/plugins/header/options/option-icons.tsx b/src/plugins/header/options/option-icons.tsx
index fc1b34ff..ccad40ba 100644
--- a/src/plugins/header/options/option-icons.tsx
+++ b/src/plugins/header/options/option-icons.tsx
@@ -30,30 +30,6 @@ export class UIPOptionIcons {
>
) as HTMLElement;
- /** Default svg for collapsed settings icon */
- public static settingsCollapsedSVG: HTMLElement = (
-
- ) as HTMLElement;
-
- /** Default svg for collapsed editor icon */
- public static editorCollapsedSVG: HTMLElement = (
-
- ) as HTMLElement;
-
- /** Default svg for copy icon */
- public static get copySVG(): HTMLElement {
- return as HTMLElement;
- }
-
public static get snippetSVG(): HTMLElement {
return <>