UNPKG

@bliss-design-system/alert

Version:

`<bliss-alert>` provides a messaging mechanism for alerting and informing.

10 lines (9 loc) 370 B
import { BlissAlert } from './BlissAlert.js'; const blissRegisterAlert = () => { if (window.customElements.get('bliss-alert')) { console.info('%c[Bliss Info]:', 'font-weight: 600;', '<bliss-alert> has already been registered.'); return; } window.customElements.define('bliss-alert', BlissAlert); }; export { BlissAlert, blissRegisterAlert };