import React, { PropsWithChildren } from 'react' import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu' import styles from './index.module.scss' interface Props extends DropdownMenuPrimitive.DropdownMenuLabelProps {} export const DropdownMenuLabel = React.forwardRef( function dropdownMenuItem( { children, ...props }: PropsWithChildren, forwardedRef ) { return ( {children} ) } ) export default DropdownMenuLabel