Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@justeattakeaway/pie-link

Package Overview
Dependencies
Maintainers
10
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeattakeaway/pie-link

PIE Design System Link built using Web Components

latest
Source
npmnpm
Version
1.3.32
Version published
Maintainers
10
Created
Source

Source Code | Design Documentation | NPM

GitHub Workflow Status

@justeattakeaway/pie-link is a Web Component built using the Lit library. It offers a simple and accessible link component for web applications.

Table of Contents

Installation

To install any of our web components in your application, we would suggest following the getting started guide to set up your project.

Ideally, you should install the component using the @justeattakeaway/pie-webc package, which includes all of the components. Or you can install the individual component package.

Documentation

Properties

PropOptionsDescriptionDefault
size"small", "medium"Sets the size of the link."medium"
variant"default", "high-visibility", "inverse"Sets the variant of the link."default"
tag"a", "button"Which HTML tag to use for the link."a"
hrefThe href attribute to apply.
Cannot be used if tag is set to "button".
undefined
targetThe target attribute to apply.
Cannot be used if tag is set to "button".
undefined
downloadstringSets the download attribute to trigger file downloads. Pass an empty string "" to enable download with the original filename, or provide a custom filename. Only available when tag is a. Use same origin URLs and point to the file using the href property.undefined
relThe rel attribute to apply.
Cannot be used if tag is set to "button".
undefined
type"button", "reset", "submit"The type attribute to apply when tag is set to "button"."submit"
underline"default", "reversed"The underline behaviour of the link. The default behaviour has the link text underlined, with the underline disappearing on hover. "reversed" will only take effect if isStandalone is set to true."default"
isBoldtrue, falseIf true, makes the link text bold.false
isStandalonetrue, falseIf true, sets the link as a block element.false
hasVisitedtrue, falseIf true, the link will apply the styles for the visited state. Only takes effect if tag is "a".false
iconPlacement"leading", "trailing"Sets the position of the icon relative to the text. Leading comes before the text and trailing comes after, taking writing direction into account. To use this, you must pass an icon into the icon slot. Will have no effect if isStandalone is false.undefined
aria{ label?: string }Aria properties for the link to help with making it accessible.undefined

Slots

SlotDescription
defaultThe default slot is used to pass text into the link component.
iconUsed to pass in an icon to the link component. The icon placement can be controlled via the iconPlacement prop and we recommend using pie-icons-webc for defining this icon. Please note the icon size is hardcoded and cannot be overridden.

CSS Variables

NameDescription
--link-font-weightControls the font weight of the link text.
--link-text-colorControls the color of the link text.
--link-text-decorationControls the text decoration of the link.

Events

This component does not emit any custom events. In order to add event listening to this component, you can treat it like a native HTML element in your application.

Usage Examples

When using icons, we recommend using @justeattakeaway/pie-icons-webc to ensure consistency with the rest of the design system.

For HTML:

// import as module into a js file e.g. main.js
import '@justeattakeaway/pie-webc/components/link.js'
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';
<!-- pass js file into <script> tag -->
<pie-link href="https://www.pie.design">
  <icon-placeholder slot="icon"></icon-placeholder>
  pie.design
</pie-link>
<script type="module" src="/main.js"></script>

For Native JS Applications, Vue, Angular, Svelte etc.:

// Vue templates (using Nuxt 3)
import '@justeattakeaway/pie-webc/components/link.js';
import '@justeattakeaway/pie-icons-webc/dist/IconPlaceholder.js';

<pie-link href="https://www.pie.design">
  <icon-placeholder slot="icon"></icon-placeholder>
  pie.design
</pie-link>

For React Applications:

import { PieLink } from '@justeattakeaway/pie-webc/react/link.js';
import { IconPlaceholder } from '@justeattakeaway/pie-icons-webc/dist/react/IconPlaceholder.js';

<PieLink href="https://www.pie.design">
  <IconPlaceholder slot="icon" />
  pie.design
</PieLink>

Downloading files

Basic download (using original filename)

<pie-link
  tag="a"
  href="/path/to/file.pdf"
  download="">
  Download PDF
</pie-link>

Download with custom filename

<pie-link
  tag="a"
  href="/path/to/file.pdf"
  download="my-custom-name.pdf">
  Download PDF
</pie-link>

Questions and Support

If you work at Just Eat Takeaway.com, please contact us on #help-designsystem. Otherwise, please raise an issue on Github.

Contributing

Check out our contributing guide for more information on local development and how to run specific component tests.

FAQs

Package last updated on 08 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts