@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
|
@@ -322,9 +322,8 @@ var ButtonV2 = function ButtonV2(_ref) {
|
|
|
322
322
|
|
|
323
323
|
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"], {
|
|
324
324
|
"w-11": !text && icon,
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"py-3": text && !icon
|
|
325
|
+
"pl-4 pr-6": text && icon,
|
|
326
|
+
"px-4": text && !icon
|
|
328
327
|
}, {
|
|
329
328
|
"opacity-50": isDisabled,
|
|
330
329
|
"pointer-events-none": isDisabled || isPending
|