function getAlertClasses
getAlertClasses(props?: AlertProps): string

Get Tailwind classes for an alert

Examples

Example 1

<div class="{{ getAlertClasses({ variant: 'warning' }) }}"> Please review before proceeding </div>

Parameters

optional
props: AlertProps

Alert configuration

Return Type

string

Tailwind class string

Usage

import { getAlertClasses } from ".";