There are three types of links available: normal (the usual brown), primary (black), and secondary (gray). You can manage it with the view property. You can also enable displaying that the link has already been clicked using the visitable property.
This is the most familiar and well-established link pattern. It is used to visually highlight an element inside a text or table, and as part of navigation. You can use it to navigate to both internal pages and external sources, including documentation. Additionally, this type is used for error pages and zero states.
This type is used when it is natively clear that an element is clickable, but using a brown Link will overload the interface and prevent you from properly highlighting key points on a page.
Just like primary Link, this type is used when it is natively clear to the user that an element is clickable, while navigating through it is not essential and affects a small number of scenarios. Its main goal is not to distract the user from the key points on the page. The Secondary type is most often used in breadcrumbs or when displaying secondary attributes.
import{Link,Text}from'@gravity-ui/uikit';exportdefaultfunction(){return(<><Text><Linkhref="#">what roles are active in the service</Link></Text><Text> Currently, this role can only be assigned to a{' '}<Linkhref="#">folder</Link> or <Linkhref="#">cloud</Link></Text></>);}