@isotope/prototope
Version:
Isotope-based JavaScript library for speedy UI prototyping
12 lines • 775 B
JavaScript
import { createUtil } from "../util";
const bgBottom = createUtil({ backgroundPosition: "bottom" });
const bgCenter = createUtil({ backgroundPosition: "center" });
const bgLeft = createUtil({ backgroundPosition: "left" });
const bgLeftBottom = createUtil({ backgroundPosition: "left bottom" });
const bgLeftTop = createUtil({ backgroundPosition: "left top" });
const bgRight = createUtil({ backgroundPosition: "right" });
const bgRightBottom = createUtil({ backgroundPosition: "right bottom" });
const bgRightTop = createUtil({ backgroundPosition: "right top" });
const bgTop = createUtil({ backgroundPosition: "top" });
export { bgBottom, bgCenter, bgLeft, bgLeftBottom, bgLeftTop, bgRight, bgRightBottom, bgRightTop, bgTop };
//# sourceMappingURL=background-position.js.map