strapi-content-type-explorer
Version:
A Strapi plugin to view your content types and their relationships
17 lines (15 loc) • 352 B
JavaScript
import React from "react";
import "./RelationIcon.css";
export function RelationIcon({ theme, children }) {
return (
<span
style={{
background: theme.colors.neutral0,
"--cte-plugin-relation-color": theme.colors.buttonPrimary500,
}}
className="cte-plugin-relation-icon"
>
{children}
</span>
);
}