UNPKG

@isotope/prototope

Version:

Isotope-based JavaScript library for speedy UI prototyping

11 lines (8 loc) 510 B
import { createUtil } from "../util"; const bgRepeat = createUtil({ backgroundRepeat: "repeat" }); const bgNoRepeat = createUtil({ backgroundRepeat: "no-repeat" }); const bgRepeatX = createUtil({ backgroundRepeat: "repeat-x" }); const bgRepeatY = createUtil({ backgroundRepeat: "repeat-y" }); const bgRepeatRound = createUtil({ backgroundRepeat: "round" }); const bgRepeatSpace = createUtil({ backgroundRepeat: "space" }); export { bgRepeat, bgNoRepeat, bgRepeatX, bgRepeatY, bgRepeatRound, bgRepeatSpace };