import React from 'react'; const base = (size, stroke, strokeWidth = 1.5) => ({ width: size, height: size, fill: 'none', stroke, strokeWidth, strokeLinecap: 'round', strokeLinejoin: 'round', }); export function IconHome({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconSun({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconHeart({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconYinYang({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconUser({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconStar({ size = 16, filled = true, color = '#D4AF37' }) { return ( ); } export function IconMoney({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconCalendar({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconClock({ size = 20, stroke = 'currentColor', strokeWidth }) { return ( ); } export function IconPaw({ size = 12, color = 'currentColor' }) { return ( ); } export function IconChevron({ size = 14, color = 'currentColor', dir = 'right' }) { const rotate = { right: 0, down: 90, left: 180, up: 270 }[dir] || 0; return ( ); } export function IconSparkle({ size = 12, color = 'currentColor' }) { return ( ); }