How to use the @pluralsight/ps-design-system-text.Heading.sizes function in @pluralsight/ps-design-system-text

To help you get started, we’ve selected a few @pluralsight/ps-design-system-text examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github pluralsight / design-system / packages / layout / src / react / page-heading-layout.js View on Github external
function PageHeadingLayout(props) {
  return (
    <div>
      <div>
        {props.heading}
        {Array.isArray(props.actions) &amp;&amp; props.actions.length &gt; 0 &amp;&amp; (
          <div>{props.actions}</div>
        )}
      </div>
      {props.children}
    </div>
  )
}
PageHeadingLayout.displayName = 'PageHeadingLayout'