Skip to content

Commit

Permalink
fix(): Fix import.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Jan 10, 2024
1 parent d993209 commit ee65a8e
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/shadcn/ui/pagination.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import * as React from "react"
import {
ChevronLeftIcon,
ChevronRightIcon,
DotsHorizontalIcon,
} from "@radix-ui/react-icons"
import * as React from "react"

import { cn } from "src/shadcn"
import { ButtonProps, buttonVariants } from "src/shadcn/ui/button"
import { cn } from "src/utils"

const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
<nav
Expand Down Expand Up @@ -111,10 +111,6 @@ const PaginationEllipsis = ({

export {
Pagination,
PaginationContent,
PaginationLink,
PaginationItem,
PaginationPrevious,
PaginationNext,
PaginationEllipsis,
PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious
}

0 comments on commit ee65a8e

Please sign in to comment.