import React from 'react'; import './Watermark.css'; export default function Watermark({ text = 'Kole UI', color = 'rgba(0,0,0,0.10)', fontSize = 14, rotate = -22, gap = 160, fullscreen = false }) { const svg = `` + ` ${text} `; const bg = `url("data:image/svg+xml;utf8,${encodeURIComponent(svg)}")`; return (
); }