Skip to content

Commit

Permalink
feat: add new border-width and border-radius tokens (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
dauriamarco authored May 27, 2024
1 parent 021e2c7 commit 265c537
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions designTokens/border.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ export const border: DesignTokens = {
value: borderWidth(2),
...attributes(),
},
'3x': {
value: borderWidth(3),
...attributes(),
},
},
radius: {
'1x': {
Expand All @@ -36,6 +40,10 @@ export const border: DesignTokens = {
value: borderRadius(4),
...attributes(),
},
'6x': {
value: borderRadius(6),
...attributes(),
},
'8x': {
value: borderRadius(8),
...attributes(),
Expand Down

0 comments on commit 265c537

Please sign in to comment.