Skip to content

Commit

Permalink
fix(link-with-icon): remove property set-by-enum (#11092)
Browse files Browse the repository at this point in the history
* fix(link-with-icon): remove property set-by-enum

* fix(link-with-icon): remove unused reference
  • Loading branch information
andy-blum authored Nov 3, 2023
1 parent 5339706 commit 885ed65
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
*/

import { html, TemplateResult, property } from 'lit-element';
import BXLink, {
LINK_SIZE,
} from '../../internal/vendor/@carbon/web-components/components/link/link.js';
import BXLink from '../../internal/vendor/@carbon/web-components/components/link/link.js';
import settings from 'carbon-components/es/globals/js/settings.js';
import ddsSettings from '../../internal/vendor/@carbon/ibmdotcom-utilities/utilities/settings/settings';
import { ICON_PLACEMENT } from '../../globals/defs';
Expand Down Expand Up @@ -50,7 +48,7 @@ class DDSLinkWithIcon extends StableSelectorMixin(BXLink) {
* @internal
*/
@property()
size = LINK_SIZE.LARGE;
size = 'lg';

/**
* @returns The main content.
Expand Down

0 comments on commit 885ed65

Please sign in to comment.