Sha256: 9fe08a678f4b11feaed08ee437b1e8054e1874e1ea0addfb8a5511dec3a61713

Contents?: true

Size: 347 Bytes

Versions: 35

Compression:

Stored size: 347 Bytes

Contents

const UIHeading = ({ children, subheading }) => {
  if(subheading) {
    return <h3 className="ui-subheading">{children}</h3>;
  }

  return <h2 className="ui-heading">{children}</h2>;
};

UIHeading.propTypes = {
  children: React.PropTypes.node.isRequired,
  subheading: React.PropTypes.bool
};

UIHeading.defaultProps = {
  subheading: false
};

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
disco_app-0.16.1.pre.sidekiq.pre.6.pre.release app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.11.0 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.11.1 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.12.0 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.12.1 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.12.5 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.12.6 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.12.7 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.0 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.1 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.2 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.3 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.4 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.5 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.6 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.7 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.13.8 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.14.1 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.14.2 app/assets/components/shopify/typography/ui-heading.es6.jsx
disco_app-0.15.0 app/assets/components/shopify/typography/ui-heading.es6.jsx