/** * Copyright (c) Double Symmetry GmbH * Commercial use requires a license. See https://rntp.dev/pricing */ import type { ViewProps } from 'react-native'; type Props = ViewProps & { tintColor?: string }; /** Web stub — AirPlay output routing is not available on web. Renders nothing. */ export function AirPlayButton(_props: Props) { return null; }