import * as React from 'react'; import { cn } from '@/lib/utils'; import UnstyledLink, { UnstyledLinkProps, } from '@/components/links/UnstyledLink'; const UnderlineLink = React.forwardRef( ({ children, className, ...rest }, ref) => { return ( {children} ); } ); export default UnderlineLink;