Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ProXIcons is a free, high-quality icon library designed for modern UI. With over 1,500 icons in solid and line styles, it offers consistent, pixel-perfect symbols ideal for websites, dashboards, and mobile apps. Its lightweight design and ease of use make it a go-to choice for developers and designers looking for clean, professional icons.

License

NotificationsYou must be signed in to change notification settings

ProgrammerKR/ProXIcons

GitHub starsGitHub forksGitHub licenseGitHub issuesWeekly DownloadsjsDelivr CDNVersionGitHub pull requestsGitHub last commitGitHub repo sizeGitHub code size in bytesGitHub language countTop languageMaintenance


High Quality, Modern, and Lightweight Open Source Icons

ProXIcons is a clean, developer-friendly iconset crafted for modern web, app, and design projects. With over 1500+ icons and a focus on performance, ProXIcons is your go-to icon library for any creative need.

ProXIcons Preview

What's New in ProXIcons

v1.4.4 (Latest Release)

  • Minor bug fixex for Performance & Readability
  • JavaScript Support: Full type definitions for better developer experience.
  • Performance Boost: Reduced bundle size by 15% with advanced SVG optimization.
  • Accessibility: Improved ARIA support for screen readers.
  • New Variants: Added outline and duotone styles.

v1.4.3

  • Fixed version conflicts and updated metadata.
  • Enhanced build system with faster development scripts.
  • Optimized SVG handling using svgo for smaller file sizes.
  • Minor bug fixes for cross-browser compatibility.

v1.3.0

  • Initial release with 1600+ unique icons.
  • Introduced regular, solid, and brand variants.
  • Added Web Component for easy integration.

Installation

ProXIcons offers multiple ways to integrate into your project. Choose the method that suits your workflow!

Via npm

npm install proxicons --save

Import the module:

import'proxicons';

Via CDN

Include the stylesheet in your HTML :

<linkhref="https://cdn.jsdelivr.net/gh/ProgrammerKR/ProXIcons@main/css/proxicons.min.css"rel="stylesheet">

Or include the JavaScript for Web Components:

<scriptsrc="https://cdn.jsdelivr.net/gh/proxicons@main/dist/proxicons.min.js"></script>

Manual Download

Download the latest release from GitHub Releases and include the files manually:

css/proxicons.min.css for CSS-based icons.

proxicons.min.js for Web Components.

Usage

ProXIcons is designed for flexibility, supporting both CSS classes and Web Components with extensive customization options.

Using via CSS

  1. Include the ProXIcons stylesheet (via CDN or local file):
<linkrel="stylesheet"href="https://cdn.jsdelivr.net/gh/ProgrammerKR/ProXIcons@main/css/proxicons.min.css">
  1. Add icons using the px, pxs, pxl classes:
<!-- Regular icon --><iclass="px px-lightbulb"></i><!-- Solid icon --><iclass="pxs px-lightbulb"></i><!-- Large brand icon --><iclass="pxl px-github"></i><!-- Outline icon --><iclass="pxo px-lightbulb"></i>
  1. Customize with utility classes:
<iclass="px px-lightbulb px-spin px-lg px-blue"></i>

Using via Web Component

Include the ProXIcons script:

<scriptsrc="https://cdn.jsdelivr.net/gh/proxicons@main/dist/proxicons.min.js"></script>

Use the element:

<!-- Basic icon --><prox-iconname="lightbulb"></prox-icon><!-- Solid variant --><prox-icontype="solid"name="lightbulb"></prox-icon><!-- Brand logo with customization --><prox-icontype="logo"name="github"size="lg"color="purple"animation="spin"></prox-icon>

Web Component Attributes

The<prox-icon> Web Component supports the following attributes:

AttributeValuesDescription
typeregular,solid,outline,logo,duotoneIcon style variant
namee.g.,lightbulb,github,proxyIcon name (see gallery for full list)
colore.g.,blue,red,#FF5733,rgb(0,0,0)Icon color
sizexs,sm,md,lg,xl, or40pxIcon size (relative or absolute)
rotate90,180,270Rotate icon in degrees
fliphorizontal,verticalFlip icon orientation
bordersquare,circleAdd a border shape around the icon
animationspin,tada,pulse,bounceApply an animation effect
pullleft,rightFloat icon to the left or right

Using in Frameworks

ProXIcons integrates seamlessly with popular frameworks:

React:

import'proxicons';functionApp(){return<iclassName="px px-lightbulb px-lg"></i>;}

Vue:

<template>  <prox-iconname="lightbulb"type="solid"size="lg"color="blue"></prox-icon></template><script>import'proxicons';</script>

Angular:

<prox-iconname="lightbulb"type="outline"size="md"></prox-icon>

Ensure the script is included inangular.json

Icon Customizer (Comming Sooon)

Try our Interactive Icon Customizer to preview and generate icons in real-time:

  • Visit ProXIcons Customizer.

  • Adjust colors, sizes, styles, and animations.

  • Download customized icons as SVG, PNG, or code snippets.

ProXIcons Icon Preview

Here’s a quick look at some beautiful, pixel-perfect icons fromProXIcons

Icon NamePreviewVariants Available
lightbulb<prox-icon name="lightbulb">Regular, Solid, Outline
github<prox-icon name="github">Logo, Solid
proxy<prox-icon name="proxy">Regular, Outline, Duotone
cloud<prox-icon name="cloud">Regular, Solid, Outline

Browse the Full Icon Gallery to explore all 1500+ icons with searchable filters.

Visit theFull Icon Gallery to explore 50 sample icons.

Contributing

We love contributions! Whether it's adding new icons, fixing bugs, or improving documentation, your help makes ProXIcons better.

How to Contribute

  1. Fork the repository.

  2. Clone your fork:

git clone https://github.com/ProgrammerKR/ProXIcons.git
  1. Install dependencies:
npm install
  1. Make changes and test locally:
npm run dev
  1. Submit a pull request with a clear description.

Contribution Ideas

We’d love your help to makeProXIcons even better! Whether you're a designer, developer, or enthusiast, here are some great ways to contribute:

Ways You Can Contribute

  • Design New Icons: Submit original SVG icons following ourIcon Guidelines
  • Fix Bugs: Help resolve open issues from theIssues page
  • Add Translations: Help localize the Customizer UI to more languages
  • Build New Features: Add animations, export options (like WebP), or integrate with more frameworks
  • Improve Docs: Enhance the documentation, examples, or tutorials

Every contribution counts — big or small!

Read our Contributing Guide (./CONTRIBUTING.md) for detailed steps.

Our Amazing Contributors

Thanks to everyone who’s helped shape ProXIcons!

[Insert dynamic contributor list or avatars]

Want to see your name here? Contribute today!

Development Setup

For developers looking to work on ProXIcons locally:

  1. Clone the repo:
git clone https://github.com/ProgrammerKR/ProXIcons.git
  1. Install dependencies:
npm install
  1. Run the development server:
npm run dev
  1. Build for production:
npm run build

Available Scripts

  • npm run dev: Start the development server with hot reloading.
  • npm run build: Generate minified CSS and JS bundles.
  • npm run test: Run unit tests with Jest.
  • npm run lint: Check code style with ESLint.
  • npm run svgo: Optimize SVG icons

Community & Support

  • Join our growing community to share ideas, get help, or showcase your projects using ProXIcons

  • Discord: Join our Discord server for real-time discussions.

  • GitHub Discussions: Participate in Discussions for feature requests and Q&A.

  • Twitter/X: Follow us at@Prog_KanishkRaj for updates and tips.

  • Email: Reach out atprogrammerkr.123@gmail.com for direct support.

Reporting Issues

  • Found a bug? Open an issue with details (OS, browser, steps to reproduce).

  • Have a feature idea? Submit a feature request.

License

ProXIcons is fully open-source with permissive licenses:

View Full License

Why Choose ProXIcons?

  • Lightweight: Optimized SVGs and minimal CSS/JS footprint (~50KB minified).

  • Flexible: Supports CSS, Web Components, and framework integrations.

  • Customizable: Extensive options for colors, sizes, animations, and more.

  • Community-Driven: Built with input from developers and designers worldwide.

Roadmap

Here’s what’s coming next for ProXIcons:

  • Icon Customizer v2 with export to Figma and Sketch.

  • CLI tool for batch icon generation.

  • Support for animated SVG icons.

  • Localization for Customizer UI (Spanish, French, etc.).

  • Integration with design tools like Adobe XD.

Check our Roadmap for progress and vote on features!

Acknowledgments

  • Inspired & forked from Boxicons.

  • Special thanks to our contributors and users for their feedback and support.

ProXIcons is more than an icon library—it’s a community-driven tool to make your projects shine. Star the repo, contribute, or share your creations with us!

Back to Top

About

ProXIcons is a free, high-quality icon library designed for modern UI. With over 1,500 icons in solid and line styles, it offers consistent, pixel-perfect symbols ideal for websites, dashboards, and mobile apps. Its lightweight design and ease of use make it a go-to choice for developers and designers looking for clean, professional icons.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp