import React from "react"; import { FloatingBannerProps, ThemeKey } from "./types"; import { NextImage } from "@shared/components/next-image"; import { Text } from "@shared/components/text"; import { Button } from "@shared/contentful/blocks/button"; export const FloatingBanner: React.FC = ({ title, subtitle, description, disclaimer, icon, cta, background = "navy", color = "light", enableHeading, maxWidth = true, }) => { const bgColorClasses: Record = { blue: "bg-[#07B2E2]", green: "bg-[#26B170]", yellow: "bg-[#F5FF1E]", purple: "bg-[#931D69]", white: "bg-white", navy: "bg-[#00002D]", }; return (
{icon && (
)}
{title && ( {title} )} {subtitle && ( {subtitle} )} {description && ( {description} )}
{cta && (
)}
{disclaimer && (
{disclaimer}
)}
); }; export default FloatingBanner;