feat(#2953): Icon button component design tokens for v2 #104
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Summary
Adds V2 design tokens for the Icon Button component, updating padding values for medium and large sizes, improving semantic token reuse for focus states, and maintaining full V1 backwards compatibility.
Changes
New Component Tokens
Icon Button Component (20 tokens total)
Spacing Tokens (Size-specific padding)
icon-button-small-padding:{space.2xs}(4px) - explicit small sizeicon-button-medium-padding:{space.xs}(8px) - Updated from 4pxicon-button-large-padding:{space.s}(12px) - Updated from 8pxBorder Radius Tokens (V1 compatibility + V2)
icon-button-border-radius:{borderRadius.m}(8px) - V2 referenceicon-button-medium-border-radius:{borderRadius.m}(8px) - V1backwards compatibility
icon-button-large-border-radius:{borderRadius.xl}(8px) - V1backwards compatibility
Focus State Tokens (Semantic reuse)
icon-button-focus-border-width:{input.borderWidth.focus}-References Input for consistency
icon-button-focus-border-color:{input.color.border.focus}-References Input for consistency
Color Tokens (Variant-specific, 12 tokens)
default-color,default-hover-color,default-hover-color-bg,default-disabled-colorlight-color,light-hover-color-bg(Updated togreyscale.600),
light-disabled-colordark-color,dark-hover-color-bg,dark-disabled-colordestructive-color,destructive-hover-color-bg,destructive-disabled-color(Updated togreyscale.500)
Key V2 Changes
Padding Updates:
Color Updates:
Semantic Reuse:
{input.borderWidth.focus}and{input.color.border.focus}for design system-wide consistencyBackwards Compatibility:
medium-border-radius,large-border-radius) for fallback chainsRelated