1pub struct CascadingStyleSheet(String);
2impl CascadingStyleSheet {
3 pub fn create(text: String) -> Self {
4 CascadingStyleSheet(text)
5 }
6}
7
8impl From<CascadingStyleSheet> for String {
9 fn from(value: CascadingStyleSheet) -> Self {
10 value.0
11 }
12}