()
| 5 | static id = 'padding'; |
| 6 | static override matches = /^padding(?:-(?:left|right|top|bottom))?:./; |
| 7 | override get props(): { [key: string]: any } { |
| 8 | return { |
| 9 | [this.prefix.slice(0, -1)]: this |
| 10 | } |
| 11 | } |
| 12 | override get order(): number { |
| 13 | return (this.prefix === PADDING + ':') ? -1 : 0; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected