0.3.0 • Published 5 months ago

@yme/lay-cx v0.3.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@yme/lay-cx

classnames filter

example

import cx from '@yme/lay-cx';
// Or
// import {cx} from '@yme/lay-cx';

// ONLY SUPPORT STRING, NUMBER, ARRAY
cx('foo', 'bar', ['zoo'], 123);
cx(
  hover && 'hover',
  false,
  undefined
);

// DOT NOT SUPPORT OBJECT
cx({
  foo: true,
  bar: false,
  zoo: true,
});