chore: lint

This commit is contained in:
Bereket Engida
2025-03-04 20:31:58 +03:00
parent 210c20eb65
commit 9d8bbb7471
38 changed files with 2251 additions and 2360 deletions

View File

@@ -18,30 +18,28 @@ const Pagination = ({ className, ...props }: React.ComponentProps<"nav">) => (
);
Pagination.displayName = "Pagination";
const PaginationContent = (
{
ref,
className,
...props
}: React.ComponentProps<"ul"> & {
ref: React.RefObject<HTMLUListElement>;
}
) => (<ul
ref={ref}
className={cn("flex flex-row items-center gap-1", className)}
{...props}
/>);
const PaginationContent = ({
ref,
className,
...props
}: React.ComponentProps<"ul"> & {
ref: React.RefObject<HTMLUListElement>;
}) => (
<ul
ref={ref}
className={cn("flex flex-row items-center gap-1", className)}
{...props}
/>
);
PaginationContent.displayName = "PaginationContent";
const PaginationItem = (
{
ref,
className,
...props
}: React.ComponentProps<"li"> & {
ref: React.RefObject<HTMLLIElement>;
}
) => (<li ref={ref} className={cn("", className)} {...props} />);
const PaginationItem = ({
ref,
className,
...props
}: React.ComponentProps<"li"> & {
ref: React.RefObject<HTMLLIElement>;
}) => <li ref={ref} className={cn("", className)} {...props} />;
PaginationItem.displayName = "PaginationItem";
type PaginationLinkProps = {