# SGhostButton

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

### SGhostButton

#### Props

| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `icon` | `SIconName` | — | 표시할 아이콘명 (필수) |
| `size?` | `SGhostButtonSize` | `'sm'` | 버튼 크기 |
| `intent?` | `SGhostButtonIntent` | `'default'` | 색상 의도 |
| `ariaLabel?` | `string` | `''` | 스크린리더용 접근성 레이블 |
| `ariaPressed?` | `boolean` | — | 토글 버튼일 때 눌림 상태 (aria-pressed). 미지정 시 속성 자체를 내보내지 않는다. |
| `ariaExpanded?` | `boolean` | — | disclosure 버튼일 때 펼침 상태 (aria-expanded) |
| `tooltipText?` | `string` | — | 호버 시 표시할 툴팁 텍스트 |
| `disabled?` | `boolean` | `false` | 비활성 |
| `anchorClassName?` | `string` | — | tooltip anchor wrapper 클래스. tooltipText가 있을 때 위치 조정용으로 사용합니다. |
| `anchorStyle?` | `CSSProperties` | — | tooltip anchor wrapper 스타일. tooltipText가 있을 때 위치 조정용으로 사용합니다. |
| `className?` | `string` | — |  |
| `style?` | `CSSProperties` | — |  |

#### Events

| Event | Type | Description |
|-------|------|-------------|
| `onClick` | `(e: MouseEvent<HTMLButtonElement>) => void` | 클릭 (sdClick) |

## Dependencies

### Used by

 - [SBarcodeInput](../SBarcodeInput)
 - [SCalendar](../SCalendar)
 - [SChip](../SChip)
 - [SDateRangePicker](../SDateRangePicker)
 - [SFilePicker](../SFilePicker)
 - [SGnb](../SGnb)
 - [SGuide](../SGuide)
 - [SInput](../SInput)
 - [SModalContainer](../SModalContainer)
 - [SOverlayHeader](../SOverlayHeader)
 - [SPopover](../SPopover)
 - [SSelect](../SSelect)
 - [STimePicker](../STimePicker)
 - [STimeRangePicker](../STimeRangePicker)
 - [SToast](../SToast)
 - [STooltip](../STooltip)
 - [STree](../STree)

### Depends on

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

### Graph

```mermaid
graph TD;
  SGhostButton --> SIcon
  SGhostButton --> STag
  SBarcodeInput --> SGhostButton
  SCalendar --> SGhostButton
  SChip --> SGhostButton
  SDateRangePicker --> SGhostButton
  SFilePicker --> SGhostButton
  SGnb --> SGhostButton
  SGuide --> SGhostButton
  SInput --> SGhostButton
  SModalContainer --> SGhostButton
  SOverlayHeader --> SGhostButton
  SPopover --> SGhostButton
  SSelect --> SGhostButton
  STimePicker --> SGhostButton
  STimeRangePicker --> SGhostButton
  SToast --> SGhostButton
  STooltip --> SGhostButton
  STree --> SGhostButton
  style SGhostButton fill:#f9f,stroke:#333,stroke-width:4px
```
