Skip to content

Commit

Permalink
removed use of alias-accent border as it was not available anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
Francis Thibault committed Nov 10, 2023
1 parent 7fcff3f commit 3951005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/features/style-props/StyleProps.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Props like `border` and `paddingX` are also provided to help you save keystrokes
```jsx
<Div
paddingY={3}
border="alias-accent">
border="alias-accent-active">
Lost in space.
</Div>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/features/tokens/TokenTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export function lineHeightRenderer(token) {

export function radiiRenderer(token) {
if (token === "circular") {
return <Div height={4} width={4} borderRadius={token} border="alias-accent"></Div>;
return <Div height={4} width={4} borderRadius={token} border="alias-accent-active"></Div>;
} else {
return <Div height={4} width={8} borderRadius={token} border="alias-accent"></Div>;
return <Div height={4} width={8} borderRadius={token} border="alias-accent-active"></Div>;
}
}

Expand Down

0 comments on commit 3951005

Please sign in to comment.