myshell-react-lib 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles/components-dark-v2.scss +44 -33
- package/dist/styles/components-light-v2.scss +51 -40
- package/dist/styles/design2-dark-v2.scss +15 -122
- package/dist/styles/design2-light-v2.scss +14 -121
- package/dist/styles/global.scss +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25683,16 +25683,16 @@ function CustomNotification(param) {
|
|
|
25683
25683
|
className: "flex flex-shrink-0 items-center justify-center",
|
|
25684
25684
|
children: [
|
|
25685
25685
|
type === "info" && /* @__PURE__ */ jsx72(CircleInfoIcon, {
|
|
25686
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info
|
|
25686
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Info items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
25687
25687
|
}),
|
|
25688
25688
|
type === "success" && /* @__PURE__ */ jsx72(CircleSuccessIcon, {
|
|
25689
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success
|
|
25689
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Success items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
25690
25690
|
}),
|
|
25691
25691
|
type === "warning" && /* @__PURE__ */ jsx72(CircleWarningIcon, {
|
|
25692
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning
|
|
25692
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Warning items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
25693
25693
|
}),
|
|
25694
25694
|
type === "error" && /* @__PURE__ */ jsx72(CircleErrorIcon, {
|
|
25695
|
-
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error
|
|
25695
|
+
className: "h-6 w-6 text-cc-Icon-Featured-icon-fg-Error items-center justify-center sm:h-4.5 sm:w-4.5"
|
|
25696
25696
|
})
|
|
25697
25697
|
]
|
|
25698
25698
|
}),
|