--- title: "Mask Image Repeat | @mask" description: "Control mask image repetition." keywords: ["mask", "repeat", "tiling", "pattern"] --- # Mask Image Repeat Control mask image repetition. Usage: - `@mask repeat-*;` This page contains only the **property configuration reference**. Complete documentation and usage examples will be added progressively in future updates. ---
## Reference ```js title="shilp.config.js" const shilpConfig = { source: "react", properties: { mask: { repeat: { property: "mask-repeat: ;", values: { // mask-repeat: v | x y; DEFAULT: "repeat", none: "no-repeat", x: "repeat-x", y: "repeat-y", space: "space", round: "round", }, }, }, }, }; export default shilpConfig; ```