ksylvest/tights

View on GitHub
src/pagination_list.tsx

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
import { clsx } from "clsx";
import type { ComponentProps, FC } from "react";

export const PaginationList: FC<ComponentProps<"ul">> = ({
  className,
  ...props
}) => <ul {...props} className={clsx("pagination-list", className)} />;