diff --git a/baseline-status.js b/baseline-status.js index ef13e0d..d7e72e5 100644 --- a/baseline-status.js +++ b/baseline-status.js @@ -4,10 +4,10 @@ import { Task } from '@lit/task'; import BaselineIcon from './baseline-icon.js'; const ICONS = { - chrome: html``, - edge: html``, - firefox: html``, - safari: html``, + chrome: `/icons/chrome.svg`, + edge: `/icons/edge.svg`, + firefox: `/icons/firefox.svg`, + safari: `/icons/safari.svg`, }; const API_ENDPOINT = 'https://api.webstatus.dev/v1/features/'; @@ -316,10 +316,10 @@ export class BaselineStatus extends LitElement { diff --git a/icons/chrome.svg b/icons/chrome.svg new file mode 100644 index 0000000..5cfe6a3 --- /dev/null +++ b/icons/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/edge.svg b/icons/edge.svg new file mode 100644 index 0000000..55323df --- /dev/null +++ b/icons/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/firefox.svg b/icons/firefox.svg new file mode 100644 index 0000000..a24826e --- /dev/null +++ b/icons/firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/safari.svg b/icons/safari.svg new file mode 100644 index 0000000..1c793b4 --- /dev/null +++ b/icons/safari.svg @@ -0,0 +1 @@ + \ No newline at end of file