/** @babel */ import React, {Component, PropTypes} from 'react'; import {RetinaImg} from 'nylas-component-kit'; import SnoozePopover from './snooze-popover'; const toolbarButton = ( ) const quickActionButton = (
) export class BulkThreadSnooze extends Component { static displayName = 'BulkThreadSnooze'; static propTypes = { selection: PropTypes.object, items: PropTypes.array, }; render() { return ; } } export class ToolbarSnooze extends Component { static displayName = 'ToolbarSnooze'; static propTypes = { thread: PropTypes.object, }; render() { return ; } } export class QuickActionSnooze extends Component { static displayName = 'QuickActionSnooze'; static propTypes = { thread: PropTypes.object, }; render() { return ; } }