---
title: Link Blade component
---
## Overview
The link component is used to render a clickable link that can perform an action:
```blade
New user
```
## Using a link as an anchor link
By default, a link's underlying HTML tag is ``. You can change it to be a `` tag by using the `tag` attribute:
```blade
New user
```
## Setting the size of a link
By default, the size of a link is "medium". You can make it "small", "large", "extra large" or "extra extra large" by using the `size` attribute:
```blade
New user
New user
New user
New user
```
## Changing the color of a link
By default, the color of a link is "primary". You can change it to be `danger`, `gray`, `info`, `success` or `warning` by using the `color` attribute:
```blade
New user
New user
New user
New user
New user
```
## Adding an icon to a link
You can add an [icon](https://blade-ui-kit.com/blade-icons?set=1#search) to a link by using the `icon` attribute:
```blade
New user
```
You can also change the icon's position to be after the text instead of before it, using the `icon-position` attribute:
```blade
New user
```
## Adding a tooltip to a link
You can add a tooltip to a link by using the `tooltip` attribute:
```blade
New user
```
## Adding a badge to a link
You can render a [badge](badge) on top of a link by using the `badge` slot:
```blade
Mark notifications as read
3
```
You can [change the color](badge#changing-the-color-of-the-badge) of the badge using the `badge-color` attribute:
```blade
Mark notifications as read
3
```