@web-atoms/core
Version:
19 lines (14 loc) • 401 B
text/typescript
import { AtomStyle } from "./AtomStyle";
import { IStyleDeclaration } from "./IStyleDeclaration";
export default class AtomPageLinkStyle extends AtomStyle {
public get root(): IStyleDeclaration {
return {
subclasses: {
".page": this.page
}
};
}
public get page(): IStyleDeclaration {
return {};
}
}