ActionLink13 props
Link
A styled anchor for inline and standalone text navigation. Supports external links, underline variants, tooltips, and custom link components for router integration. Use it for n...
공식 문서 열기Preview
Open Getting StartedUse Link for navigation instead of Button.
Import
import {Link} from '@astryxdesign/core/Link';Astryx 문서 권장 방식대로 root barrel이 아니라 컴포넌트 subpath에서 가져옵니다.
When to use
A styled anchor for inline and standalone text navigation. Supports external links, underline variants, tooltips, and custom link components for router integration. Use it for n...
linkanchorhrefhyperlinknavigationurlexternaltextlink
Important props
이 컴포넌트는 주요 variant prop보다 children/compound pattern 중심으로 사용합니다.
Theming targets
astryx-link
Best practices
- DoWrite descriptive, concise link text that clearly communicates the destination.
- DoSet `isStandalone` when the link appears outside of inline text, so it receives proper base font sizing.
- DoOnly set `label` when the link content is not descriptive text (e.g. an icon-only link). For text links, the visible text is already the accessible name; adding `label` override...
- Do notUse Link for actions that do not navigate; use a Button instead.