✨🎯 Basic Example
1import { CSS } from "hbh-proxies";3const css = new CSS.Builder()4 .button({5 padding: "10px",6 background: "blue",7 color: "white"8 })9 .button.hover({10 background: "darkblue"11 })12 .all;14console.log(css);
🖨 Output
1button { padding: 10px; background: blue; color: white; }2button:hover { background: darkblue; }