(css: string)
| 223 | } |
| 224 | |
| 225 | _processCSS(css: string): string { |
| 226 | const placeholders = theme.getPlaceholders(); |
| 227 | |
| 228 | return applyT(css, placeholders); |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * parseCSS takes in raw CSS and parses it to valid CSS using Stylis. |
no test coverage detected