diff --git a/.changeset/mean-bottles-know.md b/.changeset/mean-bottles-know.md new file mode 100644 index 00000000000..f11ac5238ab --- /dev/null +++ b/.changeset/mean-bottles-know.md @@ -0,0 +1,5 @@ +--- +'@clerk/types': patch +--- + +Add missing semibold FontWeightScale type diff --git a/packages/types/src/appearance.ts b/packages/types/src/appearance.ts index ce49aaa02e3..c0ba511d6ac 100644 --- a/packages/types/src/appearance.ts +++ b/packages/types/src/appearance.ts @@ -60,6 +60,7 @@ type FontWeightNumericValue = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 90 type FontWeightScale = { normal?: FontWeightNamedValue | FontWeightNumericValue; medium?: FontWeightNamedValue | FontWeightNumericValue; + semibold?: FontWeightNamedValue | FontWeightNumericValue; bold?: FontWeightNamedValue | FontWeightNumericValue; };