/* Inline SVG icon set */ const Icon = ({ name, ...p }) => { const I = { target: <>, heart: , users: <>, pin: <>, phone: , mail: <>, clock: <>, arrow: <>, arrowsm: <>, play: , star: , camera: <>, leaf: <>, tiktok: , instagram: <>, facebook: , youtube: <>, whatsapp: , check: , bone: , shield: <>, }; return ( {I[name]} ); }; const Placeholder = ({ icon = "camera", label, dark }) => (
{label && {label}}
); window.Icon = Icon; window.Placeholder = Placeholder;