diff --git a/docs/elements/typography.md b/docs/elements/typography.md
index d8dbcd729a..11cee8f155 100644
--- a/docs/elements/typography.md
+++ b/docs/elements/typography.md
@@ -55,6 +55,8 @@ To create consistent leading the line height is set to double the value of the b
## Headings
+**The Headings CSS classes are deprecated and should not be used. Use the [Display Heading](#displayheading) and [Heading](#heading) components instead.**
+
---
- Use sentence case for headings
diff --git a/src/components/Typography/Heading/Heading.jsx b/src/components/Typography/Heading/Heading.jsx
index ab696436a3..b550cb9c9f 100644
--- a/src/components/Typography/Heading/Heading.jsx
+++ b/src/components/Typography/Heading/Heading.jsx
@@ -15,6 +15,11 @@ const getClassName = (level, invert) => {
return `${styles[level]} ${colorClassName}`
}
+/**
+ * Used for page headings.
+ *
+ * new! v0.22.0
+ */
const Heading = ({ level, invert, children, ...rest }) => (
React.createElement(
level,
@@ -26,10 +31,19 @@ const Heading = ({ level, invert, children, ...rest }) => (
)
)
Heading.propTypes = {
+ /**
+ * Heading level (default is `h1`).
+ */
level: PropTypes.oneOf([
'h1', 'h2', 'h3', 'h4'
]).isRequired,
+ /**
+ * Whether or not to invert the colour scheme.
+ */
invert: PropTypes.bool,
+ /**
+ * The heading text.
+ */
children: PropTypes.node.isRequired
}
Heading.defaultProps = {
diff --git a/src/components/Typography/Heading/Heading.md b/src/components/Typography/Heading/Heading.md
index 34c17ce173..eabf2b5e4f 100644
--- a/src/components/Typography/Heading/Heading.md
+++ b/src/components/Typography/Heading/Heading.md
@@ -1,10 +1,19 @@
-### Minimal usage
+### Minimal Usage
+
+The Heading component outputs an `h1` tag by default.
```