agent / dev-docs /src /components /Highlight.js
Leon4gr45's picture
Replace agent-zero with Excalidraw (Docker Space)
ddfb4ad verified
Raw
History Blame Contribute Delete
279 Bytes
import React from "react";
export default function Highlight({ children }) {
return (
<span
style={{
backgroundColor: "#7874e8",
borderRadius: "2px",
color: "#fff",
padding: "0.2rem",
}}
>
{children}
</span>
);
}