diff --git a/.changeset/gold-fireants-switch.md b/.changeset/gold-fireants-switch.md
new file mode 100644
index 00000000000..5381a5389aa
--- /dev/null
+++ b/.changeset/gold-fireants-switch.md
@@ -0,0 +1,5 @@
+---
+'@primer/react': patch
+---
+
+restores color prop functionality to StyledOcticon
diff --git a/docs/content/StyledOcticon.md b/docs/content/StyledOcticon.md
deleted file mode 100644
index a45925f4e20..00000000000
--- a/docs/content/StyledOcticon.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-componentId: styled_octicon
-title: StyledOcticon
-status: Alpha
----
-
-StyledOcticon renders an [Octicon](https://octicons.github.com) with common system props, including `color`, margin, and padding.
-
-## Default example
-
-```jsx live
-<>
-
-
->
-```
-
-## Component props
-
-StyledOcticon passes all of its props except the common system props down to the [Octicon component](https://github.com/primer/octicons/tree/master/lib/octicons_react#usage), including:
-
-| Name | Type | Default | Description |
-| :------------ | :---------------- | :-----------: | :----------------------------------------------------------------------------------------------------------- |
-| ariaLabel | String | | Specifies the `aria-label` attribute, which is read verbatim by screen readers |
-| icon | Component | | [Octicon component](https://github.com/primer/octicons/tree/master/lib/octicons_react) used in the component |
-| size | Number | 16 | Sets the uniform `width` and `height` of the SVG element |
-| verticalAlign | String | `text-bottom` | Sets the `vertical-align` CSS property |
-| sx | SystemStyleObject | {} | Style to be applied to the component |
diff --git a/docs/content/StyledOcticon.mdx b/docs/content/StyledOcticon.mdx
new file mode 100644
index 00000000000..36b53b56219
--- /dev/null
+++ b/docs/content/StyledOcticon.mdx
@@ -0,0 +1,78 @@
+---
+description: Use StyledOcticon to render an Octicon as a component.
+title: StyledOcticon
+status: Alpha
+source: https://github.com/primer/react/blob/main/src/StyledOcticon.tsx
+componentId: styled_octicon
+---
+
+## Example
+
+```jsx live
+<>
+
+
+>
+```
+
+## Props
+
+
+
+
+ Checks the input by default in uncontrolled modeName of the Octicon component used in the
+ >
+ }
+ />
+
+ Sets an override color for the Octicon. Compatible with colors from the Primer color system."
+ >
+ }
+ />
+
+
+
+
+
+
+## Status
+
+
diff --git a/src/StyledOcticon.tsx b/src/StyledOcticon.tsx
index ecc7f5c6079..f508ec26e71 100644
--- a/src/StyledOcticon.tsx
+++ b/src/StyledOcticon.tsx
@@ -4,14 +4,14 @@ import styled from 'styled-components'
import sx, {SxProp} from './sx'
import {ComponentProps} from './utils/types'
-type OcticonProps = {icon: React.ElementType} & IconProps
+type OcticonProps = {icon: React.ElementType; color?: string} & IconProps
function Octicon({icon: IconComponent, ...rest}: OcticonProps) {
return
}
const StyledOcticon = styled(Octicon)`
- ${sx}
+ ${({color, sx: sxProp}) => sx({sx: {color, ...sxProp}})}
`
StyledOcticon.defaultProps = {