UNPKG

@storybook/addon-docs

Version:

Document component usage and properties in Markdown

23 lines (18 loc) 686 B
import React, { useContext } from 'react'; import { Subtitle as PureSubtitle } from '@storybook/components'; import { DocsContext } from './DocsContext'; export var Subtitle = function Subtitle(_ref) { var children = _ref.children; var _useContext = useContext(DocsContext), id = _useContext.id, storyById = _useContext.storyById; var _storyById = storyById(id), parameters = _storyById.parameters; var text = children; if (!text) { text = parameters === null || parameters === void 0 ? void 0 : parameters.componentSubtitle; } return text ? /*#__PURE__*/React.createElement(PureSubtitle, { className: "sbdocs-subtitle" }, text) : null; };