Plasma Design System
Home
Foundations
Typekit
Links
Spacing
Layout
Banner
Blankslate
Bordered line
Browser preview
Chart
Child form
Collapsible
Icon card
Info box
Labeled value
Limit card
Modal
Modal wizard
Page header
Section
Split layout
Sticky footer
Table
Form
Actionable item
Button
Checkbox
Code editor
Color picker
Countdown
Date picker
Diff viewer
Facet
File picker
Filter box
Flat select
JSON editor
Multiline box
Numeric input
Radio button
Search bar
Select - single
Select - multi
Slider
Text area
Text input
Navigation
Breadcrumbs
Sidebar navigation
SubNavigation
Tabs
Feedback
Badge
Color bar
Color dot
Icon badge
Last updated
Loading spinner
Step progress bar
Sync feedback
Toast
Tooltip
Advanced
Action bar
Info token
Link svg
List box
Options cycle
Partial string match
Slide Y
You are viewing the legacy documentation of Plasma featuring the components from the@coveord/plasma-react and @coveord/plasma-style packages. Those packages are deprecated and replaced by the @coveord/plasma-mantine package.
Return to the latest documentation
Foundations

Links

A link is a navigational element that guides users to external resources or other sections of the product.
View source
Link
1
import {TargetSize16Px} from '@coveord/plasma-react-icons';
2
3
export default () => (
4
<a className="link" href="/foundations/Links">
5
Link <TargetSize16Px height={16} />
6
</a>
7
);

Examples

Disabled
Link
1
import {TargetSize16Px} from '@coveord/plasma-react-icons';
2
3
export default () => (
4
<a className="link disabled" href="/foundations/Links">
5
Link <TargetSize16Px height={16} />
6
</a>
7
);
A button disguised as a link
1
import {TargetSize16Px} from '@coveord/plasma-react-icons';
2
3
export default () => (
4
<button className="link" onClick={() => alert('The button was clicked')}>
5
Link <TargetSize16Px height={16} />
6
</button>
7
);

No guidelines exist for Links yet.

Create guidelines