@oaknational/oak-components 2.37.0 → 2.38.0
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +0 -4
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -3268,8 +3268,6 @@ type InternalLinkProps = {
|
|
|
3268
3268
|
hoverColor: OakUiRoleToken;
|
|
3269
3269
|
activeColor: OakUiRoleToken;
|
|
3270
3270
|
disabledColor: OakUiRoleToken;
|
|
3271
|
-
iconWidth?: OakAllSpacingToken;
|
|
3272
|
-
iconHeight?: OakAllSpacingToken;
|
|
3273
3271
|
textDecoration?: OakTextDecoration;
|
|
3274
3272
|
};
|
|
3275
3273
|
|
|
@@ -3299,8 +3297,6 @@ declare const OakHoverLink: OakHoverLinkComponent;
|
|
|
3299
3297
|
type Variant = "primary" | "secondary";
|
|
3300
3298
|
|
|
3301
3299
|
type OakLinkProps = Pick<InternalLinkProps, "iconName" | "isTrailingIcon" | "isLoading"> & {
|
|
3302
|
-
iconWidth?: OakAllSpacingToken;
|
|
3303
|
-
iconHeight?: OakAllSpacingToken;
|
|
3304
3300
|
/**
|
|
3305
3301
|
* Style variant of the OakLink component: "primary" | "secondary"
|
|
3306
3302
|
*
|