Sha256: 9edb3fafa5b0243e3c701744a377bc50667c0eb83e694e4ad69bc0af35679f7f

Contents?: true

Size: 505 Bytes

Versions: 461

Compression:

Stored size: 505 Bytes

Contents

import React from 'react'
import { Hashtag } from 'playbook-ui'

const HashtagLink = (props) => {
  return (
    <div>
      <Hashtag
          text="Open in the same window"
          type="project"
          url="https://google.com"
          {...props}
      />
      <br />
      <br />
      <Hashtag
          target="_blank"
          text="Open in a new window"
          type="project"
          url="https://google.com"
          {...props}
      />
    </div>
  )
}

export default HashtagLink

Version data entries

461 entries across 461 versions & 2 rubygems

Version Path
playbook_ui-14.3.0.pre.rc.9 app/pb_kits/playbook/pb_hashtag/docs/_hashtag_link.jsx