File size: 296 Bytes
1e92f2d
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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;