2025-02-12 08:00:45 -05:00
|
|
|
import Styles from "./styles.dev.js";
|
2025-02-12 16:09:59 -05:00
|
|
|
|
|
|
|
|
2025-02-12 08:00:45 -05:00
|
|
|
const sheet = Styles({
|
2025-02-12 16:09:59 -05:00
|
|
|
Button:{
|
|
|
|
padding:"20px",
|
|
|
|
background:"orange",
|
|
|
|
".Inner":{
|
|
|
|
fontSize:"10rem"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Outline:{border:"2px solid orange"}
|
|
|
|
});
|
|
|
|
|
|
|
|
const el = sheet.dom.div.Button.Outline();
|