import { css } from 'emotion'; import { Colors } from '../../../../../models/colors'; export const showHideButtonStyle = (colorPalette: Colors) => { let showHideButtonStyle = css` position: absolute; right: 0; cursor: pointer; padding-right: 10px; padding-left: 10px; color: ${colorPalette.color13}; z-index: 2; background: transparent; border: none; font-size: 14rem; outline: none; top: 14px; `; return showHideButtonStyle; };