Sha256: 6926b715c5b60397591053a427d8077091f887a4707f903c17cdf26ab9aa963d

Contents?: true

Size: 666 Bytes

Versions: 124

Compression:

Stored size: 666 Bytes

Contents

import React from 'react'

import Title from '../_title'

const TitleLight = (props) => {
  return (
    <div>
      <Title
          text="Default Title"
          {...props}
      />
      <br />
      <Title
          size={4}
          tag="h4"
          text="Title 4"
          {...props}
      />
      <Title
          size={3}
          tag="h3"
          text="Title 3"
          {...props}
      />
      <Title
          size={2}
          tag="h2"
          text="Title 2"
          {...props}
      />
      <Title
          size={1}
          tag="h1"
          text="Title 1"
          {...props}
      />
    </div>
  )
}

export default TitleLight

Version data entries

124 entries across 124 versions & 1 rubygems

Version Path
playbook_ui-10.0.0.pre.alphafonts app/pb_kits/playbook/pb_title/docs/_title_light.jsx
playbook_ui-10.0.1 app/pb_kits/playbook/pb_title/docs/_title_light.jsx
playbook_ui-10.0.0 app/pb_kits/playbook/pb_title/docs/_title_light.jsx
playbook_ui-9.19.0.pre.alpha.pre.fonts2 app/pb_kits/playbook/pb_title/docs/_title_light.jsx