'use client'; import React, { Ref, forwardRef } from 'react'; import { styles } from './skip-link.styles.js'; import { type SkipLinkProps } from './skip-link.types.js'; function BaseSkipLink({ className, tag: Tag = 'a', children, ...props }: SkipLinkProps, ref: Ref) { return ( {children} ); } export const SkipLink = forwardRef(BaseSkipLink); SkipLink.displayName = 'SkipLink';