Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
17 lines
427 B
TypeScript
17 lines
427 B
TypeScript
"use client";
|
|
|
|
import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount";
|
|
|
|
/** Pitch / about headlines with rotating grant figures */
|
|
export function GrantHeadline({ className }: { className?: string }) {
|
|
return (
|
|
<span className={className}>
|
|
<CyclingGrantAmount
|
|
valueClassName="text-inherit"
|
|
className="inline"
|
|
/>{" "}
|
|
in non-dilutive grant funding
|
|
</span>
|
|
);
|
|
}
|