From a6080560b9dd48c976bcae22a4fd386aa275460a Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 1 Nov 2024 11:57:11 -0400 Subject: [PATCH] update docs --- docs/docs/components/button.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/docs/docs/components/button.md b/docs/docs/components/button.md index eec2e4bb2..6203a127f 100644 --- a/docs/docs/components/button.md +++ b/docs/docs/components/button.md @@ -81,7 +81,7 @@ Use the `pill` attribute to give buttons rounded edges. ### Link Buttons -It's often helpful to have a button that works like a link. This is possible by setting the `href` attribute, which will make the component render an `` under the hood. This gives you all the default link behavior the browser provides (e.g. [[CMD/CTRL/SHIFT]] + [[CLICK]]) and exposes the `target` and `download` attributes. +It's often helpful to have a button that works like a link. This is possible by setting the `href` attribute, which will make the component render an `` under the hood. This gives you all the default link behavior the browser provides (e.g. [[CMD/CTRL/SHIFT]] + [[CLICK]]) and exposes the `rel`, `target`, and `download` attributes. ```html {.example} Link @@ -89,10 +89,6 @@ It's often helpful to have a button that works like a link. This is possible by Download ``` -:::info -When a `target` is set, the link will receive `rel="noreferrer noopener"` for [security reasons](https://mathiasbynens.github.io/rel-noopener/). -::: - ### Setting a Custom Width As expected, buttons can be given a custom width by setting the `width` attribute. This is useful for making buttons span the full width of their container on smaller screens.