Skip to content

Instantly share code, notes, and snippets.

View RafaelDavisH's full-sized avatar
♨️
sipping on Coffee

Rafael D. Hernandez RafaelDavisH

♨️
sipping on Coffee
View GitHub Profile
@RafaelDavisH
RafaelDavisH / Alerts2.js
Last active September 1, 2020 18:07
Reusable Alert Component styled with TailwindCSS
import React from "react";
const Alert = ({ children, className = "", style, alertType, ...rest }) => {
const alertTypes = {
error: [
{
textColor: "text-red-700",
bgColor: "bg-red-100",
borderColor: "border-red-400"
}