-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add doc for Border Radius Global Prop
- Loading branch information
1 parent
b509b0b
commit 7d04ae3
Showing
3 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
playbook-website/app/views/pages/code_snippets/border_radius_jsx.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Card borderRadius="md"> {'Medium (6px)'} </Card> | ||
|
||
<Card | ||
borderRadius={{ | ||
none: "none", | ||
xs: "extra small", | ||
sm: "small", | ||
lg: "large", | ||
xl: "extra large", | ||
rounded: "rounded" | ||
}} | ||
/> |