function createAlert
createAlert(
message: string,
props?: AlertProps
): string

Create alert HTML string

Examples

Example 1

const html = createAlert('Your changes have been saved.', { variant: 'success', dismissible: true });

Parameters

message: string

Alert message content

optional
props: AlertProps

Alert configuration

Return Type

string

HTML string for the alert

Usage

import { createAlert } from ".";