import React, { forwardRef, type ComponentPropsWithoutRef, type ElementRef, } from 'react'; import { Content } from '@radix-ui/react-tabs'; import { tabsTheme } from '../Tabs.theme'; export interface TabsContentProps extends ComponentPropsWithoutRef {} /** * A component that represents the content of the tabs component. */ const TabsContent = forwardRef, TabsContentProps>( ({ className, ...props }, ref) => { const { content } = tabsTheme(); return ; }, ); // Assigns the display name to the TabsContent component. TabsContent.displayName = 'TabsContent'; export { TabsContent };