"use client"; import { bgColor, textColor } from './InfoCard' interface TaglineProps { className?: string; bgColor: bgColor; textColor: textColor; textTop: string; textBottom: string; } const Tagline: React.FC = ( { className, bgColor, textColor, textTop, textBottom } ) => { return ( <>
{textTop}
{/*
*/}
{textBottom}
); }; export default Tagline;