# STextLink

> 자동 생성 문서 — `npm run docs:gen`. 소스: 각 컴포넌트의 Props/Handle 인터페이스 + import 의존성.

### STextLink

#### Props

| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `label?` | `string` | `''` | 레이블 |
| `icon?` | `SIconName` | — | 좌측 아이콘 |
| `iconColor?` | `SColor` | — | 좌측 아이콘 색상. 팔레트 키(`grey_65`, `red_95` …) 또는 임의 CSS 색상 |
| `labelClass?` | `string` | — | 레이블 span에 추가할 클래스 |
| `rightArrow?` | `STextLinkArrow` | `'none'` | 우측 화살표 |
| `underline?` | `boolean` | `false` | 밑줄 여부 |
| `disabled?` | `boolean` | `false` | 비활성 |
| `size?` | `STextLinkSize` | `'sm'` | 크기 |
| `tooltipText?` | `string` | — | 호버 시 표시할 툴팁 텍스트 (회색 STag 스타일) |

#### Events

| Event | Type | Description |
|-------|------|-------------|
| `onClick` | `() => void` |  |

## Dependencies

### Used by

 - [SChipInput](../SChipInput)
 - [SPopover](../SPopover)

### Depends on

- [SIcon](../SIcon)
- [STag](../STag)

### Graph

```mermaid
graph TD;
  STextLink --> SIcon
  STextLink --> STag
  SChipInput --> STextLink
  SPopover --> STextLink
  style STextLink fill:#f9f,stroke:#333,stroke-width:4px
```
