kompass/components/partials/message-box.php

8 lines
197 B
PHP
Raw Normal View History

<?php
function kompass_print_message_box(string $message, string $type = 'success')
{
echo '<div class="notice notice-' . $type .'" style="padding: 5px 10px;">';
echo $message;
echo '</div>';
}