logo

Lumina Design

ComponentsIcons
Installation
AccordionAppHeaderAutoCompleteAvatarBottomNavigationBreadcrumbButtonCarouselCheckboxChipColumnDataTableDatePickerDialogFloatingButtonFloatingMenuInputFieldLinkMenuDropdownNextToastProviderProgressRadioButtonRangeSliderResizablePanelSelectDropDownSideBarTabSelectTabsTagTextTextAreaThemeProviderToastProviderToggleInputToggleSwitchTooltip

Link

The Link component is a navigational element that redirects users to other pages, sections, or external resources. It is typically styled to stand out within content, often underlined or colored to indicate interactivity. Links are crucial in guiding users through a website or application, making them essential in navigation menus, call-to-action buttons, or in-text references. For example, in a blog post, links can direct readers to related articles, enhancing the overall user journey.

Clickable Link
Link Size (Attribute: `size`)
Link Disabled? (Attribute: `disabled`)

Code

import Link from "@lumina-design/core/Link";
    
<Link target="_blank" href="/" disabled={false}>
  Clickable Link 
</Link>