import { htmlAttributes } from "../html/html-attributes";
export class Quote {
attributes: Record;
children: any[];
constructor(attributes: Record = {}) {
this.children = [];
this.attributes = attributes;
}
get renderWrapper(): string {
return `${this.children.map(child => child.renderWrapper).join("")}
`;
}
add(child: any): Quote {
this.children.push(child);
return this;
}
}