import { css } from 'emotion'; import { Colors } from '../../../../../models/colors'; export const button = (palette: Colors) => { return css` background-color: transparent; border: none; color: ${palette.color10}; font-weight: bold; font-size: 23rem; outline: none; cursor: pointer; `; };