'use client'; import IconCode from '@/components/icon/icon-code'; import React, { useState, ReactNode } from 'react'; interface PanelCodeHighlightProps { children: ReactNode; title?: string; codeHighlight?: string; id?: string; className?: string; } const PanelCodeHighlight = ({ children, title, id, className = '' }: PanelCodeHighlightProps) => { return (
{title}
{children}
); }; export default PanelCodeHighlight;