mirror of
https://github.com/jetkvm/website.git
synced 2025-09-16 08:38:16 +00:00
32 lines
900 B
TypeScript
32 lines
900 B
TypeScript
import React from "react";
|
|
import { ExclamationCircleIcon } from "@heroicons/react/16/solid";
|
|
import Card from "./Card";
|
|
|
|
export default function Alert({
|
|
headline,
|
|
description,
|
|
BtnElm,
|
|
}: {
|
|
headline: string;
|
|
description: string | React.ReactNode;
|
|
BtnElm?: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<Card className="bg-yellow-50 px-5 py-6 outline-yellow-700/40">
|
|
<div className="flex justify-between">
|
|
<div className="flex items-center gap-x-4">
|
|
<ExclamationCircleIcon
|
|
className="h-5 w-5 shrink-0 text-black"
|
|
aria-hidden="true"
|
|
/>
|
|
<div className="space-y-1.5">
|
|
<h3 className="text-base font-bold leading-none text-black">{headline}</h3>
|
|
<div className="text-sm leading-none text-yellow-900">{description}</div>
|
|
</div>
|
|
</div>
|
|
{BtnElm && BtnElm}
|
|
</div>
|
|
</Card>
|
|
);
|
|
}
|