import React, { ReactNode } from 'react'; import { paramCase } from 'param-case'; import Link from '@docusaurus/Link'; import clsx from 'clsx'; export function CardSection({ id, title, icon, children, description, className, hasSubSections = false, HeadingTag = 'h1', }: { id?: string; title?: string; icon?: JSX.Element; children: ReactNode; description?: ReactNode; hasSubSections?: boolean; HeadingTag?: any; className?: string; }) { return (
{description}
}