/* Aifit — line icon set. Exposes window.Icon */
(function () {
const P = {
heart: '',
lotus: '',
paw: '',
box: '',
people: '',
urn: '',
phone: '',
house: '',
diagnose: '',
vr: '',
doc: '',
chat: '',
phoneCall: '',
menu: '',
close: '',
play: '',
check: '',
line: '',
mail: '',
calendar: '',
viewer: '',
top: '',
arrow: '',
spark: '',
flower: '',
moon: '',
yen: '',
boxing: '',
film: '',
cube: '',
lock: '',
lockOpen: '',
shield: '',
move: '',
music: '',
};
function Icon({ name, className, style, strokeWidth }) {
return React.createElement("svg", {
className: "ic " + (className || ""),
style, viewBox: "0 0 24 24", fill: "none",
stroke: "currentColor", strokeWidth: strokeWidth || 1.6,
strokeLinecap: "round", strokeLinejoin: "round",
"aria-hidden": "true",
dangerouslySetInnerHTML: { __html: P[name] || "" },
});
}
window.Icon = Icon;
})();