import React from 'react'; import { Row, Col } from 'joyent-react-styled-flexboxgrid'; import { withTheme } from 'styled-components'; import { Button, StickyFooter, QueryBreakpoints, StartIcon, StopIcon, ResetIcon, DeleteIcon } from 'joyent-ui-toolkit'; const { SmallOnly, Medium } = QueryBreakpoints; export default withTheme( ({ submitting = false, statuses = {}, allowedActions = {}, onStart, onStop, onReboot, onRemove, theme = {} }) => ( {onStart && [ , ]} {onStop && [ , ]} {onReboot && [ , ]} {onRemove && ( )} ) );