0.1.2 • Published 2 years ago

simple-cx v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

simple-cx

Just another className compiler. Used for some internal projects only.

Targeted for ES2015 compatible browsers.

Usage:

import cx from "simple-cx";

const MyComponent = ({ className, bold, foo, ...rest }) => {
  return (
    <div className={cx(className, "my-class--white", foo && "my-class--foo", { "my-class--bold": bold })} {...rest} />
  );
};

export default MyComponent;