Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import clsx from 'clsx';
import type { PropsWithChildren } from 'react';
const ActionPanelCta = ( { children, className }: PropsWithChildren< { className?: string } > ) => {
return <div className={ clsx( 'action-panel__cta', className ) }>{ children }</div>;
};
export default ActionPanelCta;