/** * @license * * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import { LitElement } from 'lit'; /** * Input component using search typeahead api */ export default class emptyState extends LitElement { static styles: any; /** * Empty state heading */ title: any; /** * Empty state subtext */ subtitle: any; /** * Empty state subtext */ size: 'sm' | 'lg'; /** * Determines which predefined illustration will be displayed */ kind?: 'error' | 'noData' | 'noTags' | 'notFound' | 'notifications' | 'unauthorized'; /** * Empty state illustration theme variations. To ensure you use the correct themed illustrations, you can conditionally specify light or dark based on your app's current theme value. */ illustrationTheme?: 'light' | 'dark'; hasIllustration?: boolean; }