at master 294 B view raw
1--- 2interface Props { 3 text: string 4 color: string 5} 6 7const { text, color } = Astro.props 8const colorCss = "var(" + color + "-700)" 9--- 10<span class="p-1 pl-2 pr-2 text-xs rounded-full font-bold bg-ctp-base border border-ctp-surface0" 11 style={`color:${colorCss};`}> 12 {text} 13</span>