Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to match new major release breaking changes #1655

Closed
wants to merge 15 commits into from
4 changes: 2 additions & 2 deletions docs/content/StyledOcticon.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ StyledOcticon renders an [Octicon](https://octicons.github.com) with common syst

```jsx live
<>
<StyledOcticon icon={CheckIcon} size={32} color="success.fg" mr={2} />
<StyledOcticon icon={XIcon} size={32} color="danger.fg" />
<StyledOcticon icon={CheckIcon} size={32} sx={{ color: "success.fg" }} mr={2} />
<StyledOcticon icon={XIcon} size={32} sx={{ color: "danger.fg" }} />
</>
```

Expand Down