/* global React */
function Sparkle({ size = 14, color = 'currentColor' }) {
return (
);
}
function BeautyMark({ children = 'Beauty', size = 12 }) {
return (
{children}
);
}
function WhatsAppIcon({ size = 20 }) {
return (
);
}
function Icon({ name, size = 20, stroke = 1.5, color = 'currentColor' }) {
const paths = {
calendar: <>>,
clock: <>>,
pin: <>>,
user: <>>,
heart: ,
menu: ,
arrowRight: ,
arrowLeft: ,
arrowDown: ,
chevronRight: ,
chevronDown: ,
check: ,
close: ,
phone: ,
mail: <>>,
instagram: <>>,
gift: <>>,
star: ,
sparkles: <>>,
leaf: ,
scissors: <>>,
hand: ,
droplet: ,
foot: ,
bag: <>>,
facebook: ,
google: ,
};
return (
);
}
Object.assign(window, { Sparkle, BeautyMark, WhatsAppIcon, Icon });