MCPcopy
hub / github.com/refinedev/refine / ComingSoonText

Function ComingSoonText

packages/devtools-ui/src/components/coming-soon-text.tsx:4–20  ·  view source on GitHub ↗
(props: { className?: string })

Source from the content-addressed store, hash-verified

2import * as React from "react";
3
4export 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

Calls 1

clsxFunction · 0.50

Tested by

no test coverage detected