Highlight is used to pick out or emphasize content.
import React from 'react' import Highlight from 'playbook-ui' import Body from 'playbook-ui' const HighlightDefault = (props) => ( <div> <Highlight highlightedText={['highlight kit']} text="This is the Highlight Kit." /> <br /> <Body> {' '} {'Hello this is a'} {' '} <Highlight text=" highlight wrapped."/> </Body> <br /> <Body highlightedText={['highlighted', 'Body Kit ']} highlighting text="This is text highlighted in the Body Kit using the text prop." /> </div> ) export default HighlightDefault