// Hand-authored SVG glyphs — matches the existing Chekbooks site exactly.
// No icon font, no Lucide. Each icon is a small functional component.
const CheckStroke = ({ size = 14, color = '#3F8074' }) => (
);
const CheckFilled = ({ size = 16, color = '#3F8074' }) => (
);
const XMark = ({ size = 14, color = '#b84040' }) => (
);
const Star = ({ size = 16, color = '#C4924A' }) => (
);
const Plus = ({ size = 14 }) => (
);
const Minus = ({ size = 14 }) => (
);
const ArrowRight = ({ size = 14, color = '#fff' }) => (
);
const Phone = ({ size = 16, color = '#cce0de' }) => (
);
const Mail = ({ size = 16, color = '#cce0de' }) => (
);
// Pain-point resolution check (10x10, used inside Sound Familiar card)
const TinyCheck = () => (
);
Object.assign(window, { CheckStroke, CheckFilled, XMark, Star, Plus, Minus, ArrowRight, Phone, Mail, TinyCheck });