You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CloseButton uses its size prop to control the Close icon's size. This is a problem because CloseButtonProps extends ButtonProps which defines size as a specific string set so the resulting type is a mix of specific strings or a number.
CloseButton
uses itssize
prop to control the Close icon's size. This is a problem becauseCloseButtonProps
extendsButtonProps
which definessize
as a specific string set so the resulting type is a mix of specific strings or a number.design-system/packages/types/types/index.d.ts
Line 73 in aede4ea
We should refactor
CloseButton
's size prop to be more specific likeiconSize
so that these types don't have to be collapsed into one.The text was updated successfully, but these errors were encountered: