import {InfoBannerProps} from "@/constants/types"; export default function InfoBanner({ boldText, normalText, }: InfoBannerProps) { return (

{boldText && {boldText}} {normalText}

); }