import * as React from 'react'; import { showHideButtonStyle } from './showHideButton.style'; const ShowHideButton = (props: { onClick: () => void; show: boolean; palette: any; translator?: Function; }) => { return ( ); }; export default ShowHideButton;