@luscii-healthtech/web-ui 0.2.0 → 0.2.1
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/web-ui.cjs.development.js +2 -3
- package/dist/web-ui.cjs.development.js.map +1 -1
- package/dist/web-ui.cjs.production.min.js +1 -1
- package/dist/web-ui.cjs.production.min.js.map +1 -1
- package/dist/web-ui.esm.js +2 -3
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ButtonV2/ButtonV2.tsx +2 -3
package/dist/web-ui.esm.js
CHANGED
|
@@ -314,9 +314,8 @@ var ButtonV2 = function ButtonV2(_ref) {
|
|
|
314
314
|
|
|
315
315
|
var buttonClassName = classNames(["h-11", "relative flex flex-row justify-center items-center", "border", "transition-outline transition-colors duration-300 ease-in-out", "rounded-full", "leading-none", "shadow-sm", "cursor-pointer", "focus:outline-primary"], {
|
|
316
316
|
"w-11": !text && icon,
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"py-3": text && !icon
|
|
317
|
+
"pl-4 pr-6": text && icon,
|
|
318
|
+
"px-4": text && !icon
|
|
320
319
|
}, {
|
|
321
320
|
"opacity-50": isDisabled,
|
|
322
321
|
"pointer-events-none": isDisabled || isPending
|