FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
dist
/
components
/
cjs
Edit File: sc-badge-notice.cjs.entry.js
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-8acc3c89.js'); const scBadgeNoticeCss = ":host{display:block}.notice{background:var(--sc-badge-notice-background-color, var(--sc-color-white));color:var(--sc-badge-notice-text-color, var(--sc-color-gray-950));border:solid 1px var(--sc-badge-notice-border-color, var(--sc-color-white));border-radius:var(--sc-border-radius-small);padding:var(--sc-spacing-small);font-size:var(--sc-font-size-x-small);display:flex;gap:0.5em;line-height:1}.notice--warning{background:var(--sc-color-warning-50);color:var(--sc-color-warning-700)}"; const ScBadgeNoticeStyle0 = scBadgeNoticeCss; const ScBadgeNotice = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.type = 'primary'; this.label = undefined; this.size = 'small'; } render() { return (index.h("div", { key: 'ed74a4faff37f0378a6e57b43ac47784998e2a41', class: { 'notice': true, 'notice--is-small': this.size === 'small', 'notice--is-medium': this.size === 'medium', 'notice--is-large': this.size === 'large', 'notice--primary': this.type === 'primary', 'notice--success': this.type === 'success', 'notice--warning': this.type === 'warning', 'notice--danger': this.type === 'danger', 'notice--default': this.type === 'default', } }, index.h("sc-tag", { key: 'd9f1e8901320617807c03771366f9f7c9d5846c3', size: this.size, type: this.type }, this.label), index.h("slot", { key: '5e47a9eac5db6d302f2c0f6f1cda019be2a853d3' }))); } }; ScBadgeNotice.style = ScBadgeNoticeStyle0; exports.sc_badge_notice = ScBadgeNotice; //# sourceMappingURL=sc-badge-notice.cjs.entry.js.map
Save
Back