2.1.0 • Published 1 year ago

prpx v2.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

prpx

Utility for intelligently merging React component props using TailwindCSS classes. Merges as many props objects as you give it. Intelligently combines TailwindCSS classes, merges refs, chains event handlers and merges styles.

Built on top of tailwind-merge and react-merge-refs.

Authors

Installation

Install with npm

npm i prpx

Examples

import { prpx } from "prpx";

export function Checkbox(props: JSX.IntrinsicElements["input"]) {
  return (
    <input
      {...prpx(props, {
        type: "checkbox",
        className:
          "h-4 w-4 rounded border-gray-300 text-brand-600 focus:ring-brand-500 dark:bg-gray-900 dark:border-gray-700",
      })}
    />
  );
}