ksylvest/tights

View on GitHub
src/support/separator.tsx

Summary

Maintainability
A
55 mins
Test Coverage
A
100%
import type { FC } from "react";
import { property } from "./property";

export const separator = (Component: FC<{ separator?: string }>): void => {
  property("separator", Component, { separator: "dot" }, ".has-dot-separator");
};