import { ArrowUpRightIcon } from '@heroicons/react/24/solid'; import type { ComponentProps, FC, PropsWithChildren } from 'react'; import Tabs from '@/components/Common/Tabs'; import { Link } from '@/navigation.mjs'; import styles from './index.module.css'; type CodeTabsProps = Pick< ComponentProps, 'tabs' | 'defaultValue' > & { linkUrl?: string; linkText?: string; }; const CodeTabs: FC> = ({ children, linkUrl, linkText, ...props }) => ( {linkText} ) } > {children} ); export default CodeTabs;