Links

Links allow a user to perform an action, jump to another page, or scroll to another part of the page. Or they may activate a tooltip, pop over, or modal.

Properties

Input Fields are offered with the following property variables:

PropTypeDefaultNotes
size
string
N/A
Defines font size. Can be uno, hecto, kilo, etc.
href
string
N/A
URL path to the link destination
target
string
_self
Specifies where to open the link. Can be _self, _blank, _top_parent or framename
rel
string
N/A
Specifies the relationship between the current and the linked document. Can be alternate, author, noopener, etc.
role
string
N/A
Specifies the role of the element. Can be link or button

16pt Font

Default
Code
<div>
  <LinkCta
    href='javascript:void(0)'
    size='kilo'
  >
    Read more
  </LinkCta>
</div>

14pt Font

Default
Code
<div>
  <LinkCta
    href='javascript:void(0)'
    size='hecto'
  >
    Read more
  </LinkCta>
</div>