A comprehensive library of Philippine government icons and symbols for developers
Get Started View on GitHubIcons for all major Philippine government agencies, departments, and official symbols
CSS, React, Vue, Angular, Svelte, and Web Components - choose what works for you
Import only the icons you need to keep your bundle size minimal
WCAG 2.1 AA compliant icons with proper semantic markup
Optimized for all screen sizes and devices
Lightweight SVG icons with optimized paths for fast loading
Choose the package that fits your project:
npm install @ph-gov-icons/react
npm install @ph-gov-icons/vue
npm install @ph-gov-icons/angular
npm install @ph-gov-icons/css
npm install @ph-gov-icons/web-components
npm install @ph-gov-icons/svelte
import { PhFlag, Malacanang, DepEd } from '@ph-gov-icons/react';
function App() {
return (
<div>
<PhFlag size={24} />
<Malacanang size={32} />
<DepEd size={24} />
</div>
);
}
<template>
<div>
<PhFlag :size="24" />
<Malacanang :size="32" />
<DepEd :size="24" />
</div>
</template>
<script>
import { PhFlag, Malacanang, DepEd } from '@ph-gov-icons/vue';
</script>
<link rel="stylesheet" href="node_modules/@ph-gov-icons/css/ph-gov-icons.css">
<i class="ph-icon ph-icon-flag"></i>
<i class="ph-icon ph-icon-malacanang"></i>
<i class="ph-icon ph-icon-deped"></i>