Academy / src /components /Highlight.tsx
breslavsky's picture
first tutorial
926e78a
import React from 'react';
const Highlight = ({children, color}) => (
<span
style={{
backgroundColor: color,
borderRadius: '2px',
color: '#fff',
padding: '0.2rem',
}}>
{children}
</span>
);
export default Highlight