From d554782410fd3355a27b31f1d64d5e57147ea9ec Mon Sep 17 00:00:00 2001 From: Owen Yamauchi Date: Mon, 25 Sep 2023 17:51:47 -0400 Subject: [PATCH] Switch to `html` for RI outline --- src/states.ts | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/states.ts b/src/states.ts index 061eb42..3051a6b 100644 --- a/src/states.ts +++ b/src/states.ts @@ -1,14 +1,23 @@ -import { TemplateResult, svg } from 'lit'; +import { TemplateResult, html } from 'lit'; -const RI_ICON = - () => svg` - - - `; +const RI_ICON = () => html` + + `; export type StateInfo = { name: string; - icon: () => TemplateResult<2>; + icon: () => TemplateResult<1>; }; /**