MCPcopy Create free account
hub / github.com/doseofted/prim-rpc / IntroTextProps

Interface IntroTextProps

apps/documentation/src/components/IntroText.react.tsx:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { $navigationHappened } from "@/utils/store"
5
6interface IntroTextProps {
7 text: string | string[]
8 className?: string
9 stagger?: number
10 delay?: number
11 duration?: number
12}
13export function IntroText(props: IntroTextProps) {
14 const { text, stagger: staggerAmount = 0.5, delay: start = 0.5, duration = 0.6 } = props
15 const textLines = typeof text === "string" ? [text] : text

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected