prpx
TypeScript icon, indicating that this package has built-in type declarations

2.1.0 • Public • Published

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",
      })}
    />
  );
}

Package Sidebar

Install

Weekly Downloads

73

Version

2.1.0

License

Apache-2.0

Unpacked Size

5.09 kB

Total Files

6

Last publish

Collaborators

  • ed.software