Changed some imports

This commit is contained in:
Zhenya Goroh
2024-09-29 00:26:45 +03:00
parent bc77f2427e
commit 181b99f815
2 changed files with 2 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import styled, { keyframes } from "styled-components";
import { ny } from "@/lib/utils";
import { ChevronLeft, InfoIcon } from "lucide-react";
import { Button } from "./ui/button";
import { CopyButton } from "./ui/copy-button";
import Particles from "./ui/particles";
import confetti from "canvas-confetti";
import { releases, releaseTree } from "@/lib/releases";
@@ -13,7 +14,6 @@ const BASE_URL =
"https://github.com/zen-browser/desktop/releases/latest/download";
import SparklesText from "./ui/sparkles-text";
import { CopyButton } from "@/components/ui/copy-button";
const field_enter = keyframes`
0% {
opacity: 0;

View File

@@ -2,7 +2,7 @@
import * as React from "react";
import { Button } from "@/components/ui/button";
import { Button } from "./button";
import { CopyIcon } from "@radix-ui/react-icons";
import { useClipboard } from "@/lib/hooks";