Hello! I am working on developing a WordPress plugin, and a part of my plugin is a custom block. I am familiar with block development, but one thing has been tripping me up. If you look at the default WordPress search block, it uses the block supports features, like background color, text color, border, font size, etc. But, it only applies them to certain elements in the block (like background color to the bg of the button, or font size to the text of the label, etc.), and excludes the others. I am trying to emulate this in my block, and I absolutely cannot find any way to implement it. My block is a server-rendered block using the `render.php` file. I know about the `get_block_wrapper_attributes();` function, but that just returns a list of attrs to apply to the container. How to do it properly in the `edit.js` file would also be much appreciated. I would be grateful for any help the WordPress developers in this community can offer!
