Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Card } from '@automattic/components';
import clsx from 'clsx';
import './style.scss';
const ActionPanel = ( { children, className = '' } ) => {
return <Card className={ clsx( 'action-panel', className ) }>{ children }</Card>;
};
export default ActionPanel;