"use client" import clsx from "clsx" import React from "react" import { useLearningPath } from "../../.." type LearningPathIconProps = { className?: string imgClassName?: string } & React.AllHTMLAttributes export const LearningPathIcon = ({ className = "", imgClassName = "", }: LearningPathIconProps) => { const { baseUrl } = useLearningPath() return (
) }