UNPKG

@newrelic/gatsby-theme-newrelic

Version:

[![Community Project header](https://github.com/newrelic/opensource-website/raw/master/src/images/categories/Community_Project.png)](https://opensource.newrelic.com/oss-category/#community-project)

21 lines (17 loc) 361 B
import React from 'react'; import PropTypes from 'prop-types'; import { css } from '@emotion/react'; const Prompt = ({ character }) => ( <span css={css` color: var(--code-console-text-highlight); user-select: none; `} > {character || ' '} </span> ); Prompt.propTypes = { character: PropTypes.string, }; export default Prompt;