Files
docx-js/src/file/drawing/graphic/graphic-data/pic/shape-properties/no-fill.ts
Igor Bulovski ac40a40ec0 refactor: move components from /drawing/inline to /drawing
- they will be used for other positioning element (floating)
2018-06-08 07:50:23 +02:00

8 lines
151 B
TypeScript

import { XmlComponent } from "file/xml-components";
export class NoFill extends XmlComponent {
constructor() {
super("a:noFill");
}
}