diff --git a/.changeset/grumpy-cups-do.md b/.changeset/grumpy-cups-do.md new file mode 100644 index 0000000..1c3f7d2 --- /dev/null +++ b/.changeset/grumpy-cups-do.md @@ -0,0 +1,5 @@ +--- +"@qiskit/web-components": patch +--- + +Use empty search image as svg diff --git a/assets/empty-search-dark.png b/assets/empty-search-dark.png deleted file mode 100644 index 318b7ea..0000000 Binary files a/assets/empty-search-dark.png and /dev/null differ diff --git a/assets/empty-search.png b/assets/empty-search.png deleted file mode 100644 index af559c4..0000000 Binary files a/assets/empty-search.png and /dev/null differ diff --git a/components/icons/close.ts b/components/icons/close.ts index 7dfb100..f566cb8 100644 --- a/components/icons/close.ts +++ b/components/icons/close.ts @@ -5,12 +5,15 @@ * LICENSE file in the root directory of this source tree. */ -import { svg } from 'lit'; +import { html } from 'lit'; -export const closeIcon = svg` +export const closeIcon = html` close - +

Nothing here

Try broadening your search terms

- empty search + ${emptySearchIcon}
`; }