10 lines
386 B
JavaScript
10 lines
386 B
JavaScript
(function(){
|
|
window.BridgeBlocksCustomElements = window.BridgeBlocksCustomElements || [];
|
|
window.BridgeBlocksCustomElements.push(function(ctx){
|
|
const { bm, addOnce, css } = ctx;
|
|
addOnce(bm, 'cust-divider',{ id:'cust-divider',label:'⎯ Divider',
|
|
content:`<hr style="${css({border:'0',height:'1px','background-color':'#e2e8f0',margin:'16px 0'})}">`
|
|
});
|
|
});
|
|
})();
|