Some checks are pending
Deploy to Cloudflare Workers (OpenNext) / deploy (push) Waiting to run
16 lines
368 B
TypeScript
16 lines
368 B
TypeScript
"use client";
|
|
|
|
import { CyclingGrantAmount } from "@/components/grants/CyclingGrantAmount";
|
|
|
|
export function PurposeGrantText() {
|
|
return (
|
|
<span className="font-semibold text-foreground">
|
|
<CyclingGrantAmount
|
|
className="inline"
|
|
valueClassName="text-inherit font-semibold"
|
|
/>{" "}
|
|
in non-dilutive grant funding
|
|
</span>
|
|
);
|
|
}
|