// @flow import React from 'react'; import Button from 'component/button'; type Props = { uri: string, isMuted: boolean, channelClaim: ?ChannelClaim, doToggleMuteChannel: (string) => void, }; function ChannelBlockButton(props: Props) { const { uri, doToggleMuteChannel, isMuted } = props; return (