24 lines
183 B
JavaScript
24 lines
183 B
JavaScript
|
|
|
|
export default class selectLabel{
|
|
|
|
fontSize = 12;
|
|
|
|
fontWeight = "bold";
|
|
|
|
margin = "0 auto"
|
|
|
|
|
|
#ifdef DARK
|
|
|
|
color = "white"
|
|
|
|
#endif
|
|
|
|
#ifdef LIGHT
|
|
|
|
color = "black";
|
|
|
|
#endif
|
|
|
|
} |