Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import clsx from 'clsx';
const ActionPanelLink = ( { children = undefined, href, className = '' } ) => {
return (
<a href={ href } className={ clsx( 'action-panel__body-text-link', className ) }>
{ children }
</a>
);
};
export default ActionPanelLink;