import React from 'react'



interface SectionTagProps {
  text: string
  bg: string
  color: string
}


const SectionTag: React.FC<SectionTagProps> = ({ text, bg, color }) => {
  return (
    <div
      style={{
        backgroundColor: bg,
        color: color,
        borderRadius: 6,
        padding: '8px 16px',
        display: 'inline-block',
        fontWeight: 400,
        fontSize: '1.4em',

      }}
    >
      {text}
    </div>
  )
}


export default SectionTag