ksylvest/tights

View on GitHub
src/support/color.tsx

Summary

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

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