({ children = "Pro" }: { children?: ReactNode })
| 541 | } |
| 542 | |
| 543 | function ProChip({ children = "Pro" }: { children?: ReactNode }) { |
| 544 | return ( |
| 545 | <span |
| 546 | className={cn( |
| 547 | dmSans125ClassName(), |
| 548 | "ml-auto shrink-0 pl-2 text-[10px] font-semibold uppercase tracking-wide text-[#4BA0FA]", |
| 549 | )} |
| 550 | > |
| 551 | {children} |
| 552 | </span> |
| 553 | ) |
| 554 | } |
| 555 | |
| 556 | function NewChip() { |
| 557 | return ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…