xref: /expo/docs/components/plugins/Highlight.tsx (revision e7a5287c)
1import { css } from '@emotion/react';
2import { theme } from '@expo/styleguide';
3import React from 'react';
4
5const STYLES_HIGHLIGHT = css`
6  text-shadow: ${theme.highlight.emphasis} 0px 0px 10px, ${theme.highlight.emphasis} 0px 0px 10px,
7    ${theme.highlight.emphasis} 0px 0px 10px, ${theme.highlight.emphasis} 0px 0px 10px;
8`;
9
10const Highlight: React.FC = ({ children }) => <span css={STYLES_HIGHLIGHT}>{children}</span>;
11
12export default Highlight;
13