import React, { ComponentProps } from "react"; import { StyledButton } from "./StyledButton"; import { StyleSheet } from "react-native"; type StyledButtonProps = ComponentProps; export const MediaButton = (props: StyledButtonProps) => ( ); const styles = StyleSheet.create({ mediaControlButton: { padding: 12, minWidth: 80, }, });