// Inline icon set. All icons use currentColor.
(function () {
const ico = {
viewBox: '0 0 24 24', fill: 'none', stroke: 'currentColor',
strokeWidth: 1.5, strokeLinecap: 'round', strokeLinejoin: 'round',
};
const Copy = ({ size = 14 }) => (
);
const Phone = ({ size = 14 }) => (
);
const Mail = ({ size = 14 }) => (
);
const Arrow = ({ size = 14 }) => (
);
const Close = ({ size = 18 }) => (
);
const Hamburger = ({ size = 18 }) => (
);
const Pin = ({ size = 14 }) => (
);
const Star = ({ size = 14 }) => (
✦
);
window.GR = Object.assign(window.GR || {}, {
Icons: { Copy, Phone, Mail, Arrow, Close, Hamburger, Pin, Star },
});
})();