Skip to content

Commit

Permalink
Merge pull request #2452 from hashicorp/fix/icon-tile-types
Browse files Browse the repository at this point in the history
`IconTile`: fix the `@color` argument type
  • Loading branch information
shleewhite authored Sep 25, 2024
2 parents dba6811 + 2c10bc3 commit 0395a2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/famous-dragons-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@hashicorp/design-system-components": patch
---

`IconTile`: fixed `@color` argument type signature
4 changes: 1 addition & 3 deletions packages/components/src/components/hds/icon-tile/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,4 @@ export enum HdsIconTileColorNeutral {
Neutral = 'neutral',
}

export type HdsIconTileColors =
| HdsIconTileProductValues
| HdsIconTileColorNeutral;
export type HdsIconTileColors = HdsIconTileProducts | HdsIconTileColorNeutral;

0 comments on commit 0395a2b

Please sign in to comment.