import React from 'react'; import Button from 'app/components/button'; import {IconBell} from 'app/icons'; import {t} from 'app/locale'; type Props = { onClick: (e: React.MouseEvent) => void; disabled?: boolean; isSubscribed?: boolean; size?: React.ComponentProps['size']; }; export default class SubscribeButton extends React.Component { render() { const {size, isSubscribed, onClick, disabled} = this.props; const icon = ; return ( ); } }