| 1 |
<?php |
| 2 |
namespace ABlocks\Blocks\AtomicSvg; |
| 3 |
|
| 4 |
if ( ! defined( 'ABSPATH' ) ) { |
| 5 |
exit; |
| 6 |
} |
| 7 |
|
| 8 |
use ABlocks\Classes\AtomicBlockBase; |
| 9 |
|
| 10 |
/** |
| 11 |
* atomic-svg — inline SVG with the atomic style system (fill / stroke / size). |
| 12 |
* Static markup; only the scoped CSS is rendered here. |
| 13 |
*/ |
| 14 |
class Block extends AtomicBlockBase { |
| 15 |
protected $block_name = 'atomic-svg'; |
| 16 |
} |
| 17 |
|