ksylvest/tights

View on GitHub
src/file_cta.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import type { ComponentProps, FC } from "react";

export const FileCTA: FC<ComponentProps<"span">> = (props) => (
  <span {...props} className="file-cta" />
);