Function
ComingSoonText
(props: { className?: string })
Source from the content-addressed store, hash-verified
| 2 | import * as React from "react"; |
| 3 | |
| 4 | export const ComingSoonText = (props: { className?: string }) => { |
| 5 | return ( |
| 6 | <h2 |
| 7 | className={clsx( |
| 8 | "re-bg-coming-soon-text", |
| 9 | "re-drop-shadow-coming-soon-text", |
| 10 | "re-text-2xl lg:re-text-[32px] lg:re-leading-10", |
| 11 | "re-bg-clip-text", |
| 12 | "re-text-transparent", |
| 13 | "re-font-semibold", |
| 14 | props.className, |
| 15 | )} |
| 16 | > |
| 17 | Coming Soon! |
| 18 | </h2> |
| 19 | ); |
| 20 | }; |
Callers
nothing calls this directly
Tested by
no test coverage detected