// @flow import * as React from 'react'; import PlainButton from '../plain-button'; type Props = { buttonRef?: Function, isSelected?: boolean, onClick?: Function, }; const SlideButton = ({ buttonRef, onClick, isSelected = false, ...rest }: Props) => ( ); export default SlideButton;