import React from 'react'; import { Field } from 'redux-form'; import Flex from 'styled-flex-component'; import { Margin } from 'styled-components-spacing'; import { Button, FormGroup, Input, FormLabel } from 'joyent-ui-toolkit'; export const Toolbar = ({ searchable = true, searchLabel = 'Filter', searchPlaceholder = '', action = false, actionLabel = '', actionable = false, onActionClick }) => ( {searchLabel} {action ? ( ) : null} ); export default ({ handleSubmit, ...rest }) => (
);