Skip to content

Commit

Permalink
fix: move bundled icons to components dir and update refs
Browse files Browse the repository at this point in the history
spwoodcock committed May 31, 2024
1 parent d16de80 commit 1c6df9d
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Header.ts
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ import '@shoelace-style/shoelace/dist/components/tab/tab.js';
import { LitElement, css, html, unsafeCSS } from "lit";
import { property } from "lit/decorators.js";

import registerBundledIcons from '../theme/icons/bundled';
import registerBundledIcons from '../components/icons';

registerBundledIcons();

2 changes: 1 addition & 1 deletion components/Toolbar.ts
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ import '@shoelace-style/shoelace/dist/components/tooltip/tooltip.js';
import { LitElement, css, html, unsafeCSS } from "lit";
import { property } from "lit/decorators.js";

import registerBundledIcons from '../theme/icons/bundled';
import registerBundledIcons from '../components/icons';

registerBundledIcons();

2 changes: 1 addition & 1 deletion components/Tracking.ts
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import '@shoelace-style/shoelace/dist/components/alert/alert.js';
import { LitElement, css, html, unsafeCSS } from "lit";
import { property, state } from "lit/decorators.js";

import registerBundledIcons from '../theme/icons/bundled';
import registerBundledIcons from '../components/icons';

registerBundledIcons();

File renamed without changes.

0 comments on commit 1c6df9d

Please sign in to comment.