next-helios-fe 1.10.2 → 1.10.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.10.2",
3
+ "version": "1.10.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -299,10 +299,10 @@ export const ModalSelect: React.FC<ModalSelectProps> = ({
299
299
  )
300
300
  ).map((optionItem: any, index: number) => {
301
301
  return (
302
- <Button
302
+ <button
303
303
  key={index}
304
304
  type="button"
305
- className={`${
305
+ className={`px-3 py-1.5 rounded-md text-left hover:bg-secondary-light ${
306
306
  type === "select"
307
307
  ? "disabled:bg-primary-transparent disabled:text-primary"
308
308
  : "disabled:text-disabled"
@@ -402,7 +402,7 @@ export const ModalSelect: React.FC<ModalSelectProps> = ({
402
402
  </div>
403
403
  </div>
404
404
  )}
405
- </Button>
405
+ </button>
406
406
  );
407
407
  })
408
408
  )}