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