/* ===== Подари вторую жизнь — icons (functional line icons) ===== */ const Svg = ({ children, fill, sw = 2, ...p }) => ( {children} ); const Icons = { paw: (p) => ( ), pawHeart: (p) => ( ), clock: (p) => (), camera: (p) => (), tune: (p) => (), search: (p) => (), home: (p) => (), grid: (p) => (), arrowRight: (p) => (), arrowLeft: (p) => (), chevL: (p) => (), chevR: (p) => (), heart: (p) => (), pin: (p) => (), phone: (p) => (), cake: (p) => (), ruler: (p) => (), male: (p) => (), female: (p) => (), cat: (p) => (), dog: (p) => (), upload: (p) => (), image: (p) => (), sparkle: (p) => (), check: (p) => (), checkCircle: (p) => (), x: (p) => (), plus: (p) => (), edit: (p) => (), trash: (p) => (), lock: (p) => (), menu: (p) => (), info: (p) => (), shield: (p) => (), heartHand: (p) => (), scan: (p) => (), refresh: (p) => (), bell: (p) => (), }; Object.assign(window, { Icons, Svg });