@app-studio/web 0.3.65 → 0.3.66

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.esm.js CHANGED
@@ -421,7 +421,7 @@ var IconSizes = {
421
421
  '6xl': 64
422
422
  };
423
423
 
424
- var _excluded$a = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "colorScheme", "styles", "setIsHovered"];
424
+ var _excluded$a = ["children", "href", "iconSize", "underline", "isHovered", "isExternal", "styles", "setIsHovered"];
425
425
  var LinkView = function LinkView(_ref) {
426
426
  var children = _ref.children,
427
427
  _ref$href = _ref.href,
@@ -434,8 +434,6 @@ var LinkView = function LinkView(_ref) {
434
434
  isHovered = _ref$isHovered === void 0 ? false : _ref$isHovered,
435
435
  _ref$isExternal = _ref.isExternal,
436
436
  isExternal = _ref$isExternal === void 0 ? false : _ref$isExternal,
437
- _ref$colorScheme = _ref.colorScheme,
438
- colorScheme = _ref$colorScheme === void 0 ? '#0072F5' : _ref$colorScheme,
439
437
  _ref$styles = _ref.styles,
440
438
  styles = _ref$styles === void 0 ? {
441
439
  icon: {},
@@ -451,7 +449,6 @@ var LinkView = function LinkView(_ref) {
451
449
  to: href,
452
450
  target: isExternal ? '_blank' : '_self'
453
451
  }, React.createElement(Element, Object.assign({
454
- color: colorScheme,
455
452
  onMouseEnter: handleHover,
456
453
  onMouseLeave: handleHover,
457
454
  textDecoration: isHovered || underline === 'underline' ? 'underline !important' : 'none'
@@ -460,7 +457,6 @@ var LinkView = function LinkView(_ref) {
460
457
  alignItems: "center",
461
458
  wrap: "nowrap"
462
459
  }, children, isExternal && React.createElement(ExternalLinkSvg, {
463
- color: colorScheme,
464
460
  size: IconSizes[iconSize],
465
461
  style: styles.icon
466
462
  }))));