diff --git a/docs/components/Tooltip/index.tsx b/docs/components/Tooltip/index.tsx deleted file mode 100644 index 12e8497f62..0000000000 --- a/docs/components/Tooltip/index.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import { useRef } from "react" -import polyfill from "@oddbird/css-anchor-positioning/fn" - -interface Props { - label: string - framework: string - children: React.ReactNode -} - -export function Tooltip({ label, framework, children }: Props) { - // CSS Anchor Positioning Polyfill - // https://github.com/oddbird/css-anchor-positioning - polyfill() - - const popoverTargetRef = useRef() - const slug = label.replace(/[^a-zA-Z0-9]/g, "-").toLowerCase() - - return ( -
- -
- {label} -
-
- ) -} diff --git a/docs/pages/getting-started/installation.mdx b/docs/pages/getting-started/installation.mdx index 544ee8f693..e8c57de3dc 100644 --- a/docs/pages/getting-started/installation.mdx +++ b/docs/pages/getting-started/installation.mdx @@ -15,8 +15,6 @@ Start by installing the appropriate package for your framework. - - You can use the Qwik starter script: ```bash npm2yarn npm run qwik add auth