/* eslint-disable react/prop-types */
// @flow
import React from 'react';
import PrettyProps from 'pretty-proptypes';
import Button from '@atlaskit/button';
import ChevronDownIcon from '@atlaskit/icon/glyph/chevron-down';
import ChevronUpIcon from '@atlaskit/icon/glyph/chevron-up';
import components from './components';
// $FlowFixMe - Button issue
components.Button = ({ isCollapsed, ...rest }) => {
return (
) : (
)
}
{...rest}
/>
);
};
const Props = (props /*: Object */) => (
);
export default Props;