@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
9 lines (6 loc) • 317 B
text/typescript
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 };