upline/bem-classname

dev-main 2021-09-08 14:08 UTC

This package is not auto-updated.

Last update: 2024-11-01 04:00:41 UTC


README

Implementation of bem-react/classname in php

Usage:

$preset = new BemPreset();
$factory = new BemFactory($preset);
$block = $factory->block('test');

$block->cn(['color' => 'yellow', 'active']); // test test_color_yellow test_active

$block->element('elem', ['type' => 'button', 'active']); // test__elem test__elem_button_yellow __elem_active