Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import {customElement} from '@material/mwc-base/base-element.js';
import {style} from '@material/mwc-top-app-bar/mwc-top-app-bar-css';
import {TopAppBarShortBase} from './top-app-bar-short-base';
declare global {
interface HTMLElementTagNameMap {
'mwc-top-app-bar-short': TopAppBarShort;
}
}
@customElement('mwc-top-app-bar-short')
export class TopAppBarShort extends TopAppBarShortBase {
static styles = style;
}