Skip to content

Commit

Permalink
fix: attempt to fix TileInteractive type to accept button props
Browse files Browse the repository at this point in the history
  • Loading branch information
LimeWub committed Feb 19, 2024
1 parent f1dcb56 commit b7481b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/components/tile-interactive/TileInteractive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ const StyledTileInteractive = styled.withConfig({

type TTileInteractiveProps = React.ComponentProps<
typeof StyledTileInteractive
> & { type?: string } & NavigatorActions
> &
React.ButtonHTMLAttributes<HTMLButtonElement> &
NavigatorActions

export const TileInteractive = React.forwardRef<
HTMLButtonElement,
Expand Down

0 comments on commit b7481b0

Please sign in to comment.