ksylvest/tights

View on GitHub
src/navbar_brand.tsx

Summary

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

export const NavbarBrand: FC<ComponentProps<"div">> = ({
  className,
  ...props
}) => <div {...props} className={clsx("navbar-brand", className)} />;