ksylvest/tights

View on GitHub
src/dropdown_divider.tsx

Summary

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

export const DropdownDivider: FC<ComponentProps<"hr">> = () => (
  <hr className="dropdown-divider" />
);