import { createUtil } from "../util";

const textLeft = createUtil({ textAlign: "left" });
const textCenter = createUtil({ textAlign: "center" });
const textRight = createUtil({ textAlign: "right" });
const textJustify = createUtil({ textAlign: "justify" });

export { textLeft, textCenter, textRight, textJustify };
