926e78a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from 'react'; const Highlight = ({children, color}) => ( <span style={{ backgroundColor: color, borderRadius: '2px', color: '#fff', padding: '0.2rem', }}> {children} </span> ); export default Highlight