({ stepNumber }: { stepNumber: string | null })
| 138 | } |
| 139 | |
| 140 | function Step({ stepNumber }: { stepNumber: string | null }) { |
| 141 | if (!stepNumber) return <></>; |
| 142 | return ( |
| 143 | <span className="relative left-12 right-0 top-0 mb-2 ml-0 flex -translate-x-[calc(91%)] transform justify-end rounded-lg bg-background px-4 py-2 font-mono text-xs uppercase leading-tight shadow md:left-0 3xl:absolute 3xl:w-full 3xl:-translate-x-[calc(100%+3vw)] 3xl:justify-end 3xl:rounded-r-lg"> |
| 144 | <span className="flex"> |
| 145 | Step <span className="ml-1 text-muted-foreground/80">#</span> |
| 146 | {stepNumber} |
| 147 | </span> |
| 148 | </span> |
| 149 | ); |
| 150 | } |
nothing calls this directly
no outgoing calls
no test coverage detected