ksylvest/tights

View on GitHub
src/support/alignment.tsx

Summary

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

export const alignment = (Component: FC<{ alignment?: string }>): void => {
  property("alignment", Component, { alignment: "centered" }, ".is-centered");
};