Skip to content

Commit

Permalink
fix(markerview): make PointAnnotationProps component extend ViewProps (
Browse files Browse the repository at this point in the history
…#42)

* fix(markerview): make MarkerView component extend ViewProps

* chore: add changelog entry
  • Loading branch information
danshilm authored Jul 25, 2023
1 parent fbf72f0 commit 6944dd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Please add unreleased changes in the following style:
PR Title ([#123](link to my pr))
```

fix(markerview): make PointAnnotationProps component extend ViewProps ([#41](https://github.com/maplibre/maplibre-react-native/issues/41))

## 9.0.1

Fix build issue on iOS ([#29](https://github.com/maplibre/maplibre-react-native/issues/29))
Expand Down
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ export interface LightProps extends Omit<ViewProps, 'style'> {
style?: LightStyle;
}

export interface PointAnnotationProps {
export interface PointAnnotationProps extends ViewProps {
id: string;
title?: string;
snippet?: string;
Expand Down

0 comments on commit 6944dd2

Please sign in to comment.