1import { css } from '@emotion/core'; 2import React from 'react'; 3 4const STYLES_HIGHLIGHT = css` 5 text-shadow: rgba(255, 255, 0, 1) 0px 0px 10px, rgba(255, 255, 0, 1) 0px 0px 10px, 6 rgba(255, 255, 0, 1) 0px 0px 10px, rgba(255, 255, 0, 1) 0px 0px 10px; 7`; 8 9const Highlight: React.FC = ({ children }) => <span css={STYLES_HIGHLIGHT}>{children}</span>; 10 11export default Highlight; 12