import React from "react"; interface Props { color: string; } export const Badge = (props: Props) => { const { color } = props; return
; };