diff --git a/ecosystem-explorer/src/components/ui/detail-card.tsx b/ecosystem-explorer/src/components/ui/detail-card.tsx
index 4602f626..0bb57fe5 100644
--- a/ecosystem-explorer/src/components/ui/detail-card.tsx
+++ b/ecosystem-explorer/src/components/ui/detail-card.tsx
@@ -14,12 +14,15 @@
* limitations under the License.
*/
import React from "react";
+import type { CollectorComponentType } from "./type-stripe-colors";
+import { TypeStripe } from "./type-stripe";
interface DetailCardProps {
children: React.ReactNode;
className?: string;
withGrid?: boolean;
withHoverEffect?: boolean;
+ typeStripe?: CollectorComponentType;
}
export function DetailCard({
@@ -27,6 +30,7 @@ export function DetailCard({
className = "",
withGrid = false,
withHoverEffect = false,
+ typeStripe,
}: DetailCardProps) {
const patternId = React.useId().replace(/:/g, "-");
@@ -38,6 +42,12 @@ export function DetailCard({
: ""
} ${className}`}
>
+ {typeStripe && (
+
+ )}
{withGrid && (