# gds-menu-button - Angular

## Import

```typescript
import { GdsMenuButtonComponent } from '@sebgroup/green-core-ng'
```

## Usage

Use the component in your Angular templates:

```html
<gds-menu-button>
  <!-- content -->
</gds-menu-button>
```

## Event Handling

Events are emitted using Angular output syntax. Event names are converted from kebab-case to camelCase:

| Web Component Event | Angular Output | Handler Example |
|---------------------|----------------|-----------------|
| `click` | `click` | `(click)="handler($event)"` |
