ksylvest/tights

View on GitHub
src/card_footer.tsx

Summary

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

export const CardFooter: FC<ComponentProps<"footer">> = ({
  className,
  ...props
}) => <footer className={clsx("card-footer", className)} {...props} />;