Estimated Delivery Date Widget Code :

add_action('woocommerce_after_add_to_cart_form', 'display_estimated_delivery_date', 40);

function display_estimated_delivery_date() {
$estimated_delivery_date = date('d M Y', strtotime('+5 days'));
echo '<style>
/* CSS for Font Awesome library */
@import url("https://use.fontawesome.com/releases/v5.14.0/css/all.css");
</style>';
echo '<div class="estimated-delivery-date-widget" style=" padding: 7px 10px 7px 15px; border-left: 1px dotted; border: 1px dotted black; border-radius: 3px; font-size: 12px; margin-bottom: 10px;">';
echo '<p><i class="fas fa-truck" style=" color: green; margin-right: 10px;"></i> Estimated Delivery Date: '.$estimated_delivery_date.'</p>';
echo '</div>';
}