From 1bf3e5a2b73dc107930be7be06f24b50b6a21db7 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 9 Feb 2024 10:20:18 -0500 Subject: [PATCH] add missing import to template --- scripts/plop/templates/component/component.hbs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/plop/templates/component/component.hbs b/scripts/plop/templates/component/component.hbs index a5b797bf..dc49d609 100644 --- a/scripts/plop/templates/component/component.hbs +++ b/scripts/plop/templates/component/component.hbs @@ -2,6 +2,7 @@ import { property } from 'lit/decorators.js'; import { html } from 'lit'; import { LocalizeController } from '../../utilities/localize.js'; import { watch } from '../../internal/watch.js'; +import componentStyles from '../../styles/component.styles.js'; import ShoelaceElement from '../../internal/shoelace-element.js'; import styles from './{{ tagWithoutPrefix tag }}.styles.js'; import type { CSSResultGroup } from 'lit';