Skip to main content

Link

Reference to a resource, either external (a link to a different website) or internal (a link to another page or document).

<Link>Link</Link>

Props

Component

Use another React component, usually an internal routing Link component such as Link from react-router-dom.

import { ReactComponent } from 'package'

<Link href="">Anchor</Link>
<Link component={ReactComponent} to="">React component</Link>

Icon

<Link icon={<ArrowRight />}>Link with icon</Link>

Color

Overrides the link color. The inherit value means that the link will inherit the parent text colour.

<Link color="default">Default</Link>
<Link color="alt">Alt</Link>
<Link color="disabled">Disabled</Link>

<Link color="contrast">Contrast</Link>
<Link color="contrastAlt">Contrast alt</Link>
<Link color="contrastDisabled">Contrast disabled</Link>

<Link>Primary</Link>
<Link color="secondary">Secondary</Link>

<Link color="inherit">Inherit</Link>

IsExternal

<Link isExternal href="">External link</Link>