// app-icons.jsx — minimal geometric line icons for the Civify app
// Export: Icon ({ name, size, color, stroke, fill })
(function () {
const P = {
// course icons
institution: (
),
scale: (
),
person: (
),
ballot: (
),
// ui / badges
flame: (
),
check: (
),
star: (
),
globe: (
),
home: (
),
compass: (
),
lock: (
),
bolt: (
),
arrowRight: (
),
close: (
),
trophy: (
),
grid: (
),
chart: (
),
layers: (
),
shield: (
),
mail: (
),
play: (
),
};
function Icon({ name, size = 24, color = 'currentColor', stroke = 2, fill = 'none', style }) {
return (
);
}
window.Icon = Icon;
})();