import React from 'react'; import { sprintf } from '@wordpress/i18n'; import { Post } from '../../types'; import { cn } from '@/lib/utils'; interface Props { children: React.ReactNode | null; className?: string; label: string; post: Post; onClick( post: Post ): void; } /** * Action Link Component. */ const ActionLink = ( { children = null, className = '', label, post, onClick, }: Props ): React.ReactNode => ( ); export default ActionLink;