Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { createLink } from '@tanstack/react-router';
import { Button } from '@wordpress/components';
import { ButtonProps } from '@wordpress/components/build-types/button/types';
import { forwardRef } from 'react';
function RouterLinkButton( props: ButtonProps, ref: React.Ref< HTMLAnchorElement > ) {
return <Button ref={ ref } { ...props } />;
}
export default createLink( forwardRef( RouterLinkButton ) );