UNPKG

@bliss-design-system/button

Version:

Button component, or an anchor element styled as a button.

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