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