{description}
} - -{description}
}{val}
)
-
- // show all if there are few
- if (value.length < truncateAt) return {children}
+
+)
+
+ComponentPropsEnumValue.propTypes = {
+ children: PropTypes.node,
+}
+
+export default neverUpdate(ComponentPropsEnumValue)
diff --git a/docs/app/Components/ComponentDoc/ComponentProps/ComponentPropsExtra.js b/docs/app/Components/ComponentDoc/ComponentProps/ComponentPropsExtra.js
new file mode 100644
index 0000000000..8df08ecdaf
--- /dev/null
+++ b/docs/app/Components/ComponentDoc/ComponentProps/ComponentPropsExtra.js
@@ -0,0 +1,34 @@
+import PropTypes from 'prop-types'
+import React from 'react'
+
+const descriptionStyle = {
+ color: '#666',
+}
+const contentStyle = {
+ marginLeft: '0.5em',
+}
+const contentBlockStyle = {
+ ...contentStyle,
+ display: 'block',
+}
+const contentInlineStyle = {
+ ...contentStyle,
+ display: 'inline',
+}
+
+const ComponentPropsExtra = ({ children, inline, title, ...rest }) => (
+