All Projects → ionic-team → Ionicons

ionic-team / Ionicons

Licence: mit
Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎

Programming Languages

typescript
32286 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ionicons

Ionic Framework
A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
Stars: ✭ 45,802 (+189.85%)
Mutual labels:  ionic, webcomponents, stenciljs
icons
A world of famous icon packs with easy to use interface
Stars: ✭ 21 (-99.87%)
Mutual labels:  icons, icon-pack, iconset
semicon
A collection of icons for the Semantic Web and Linked Open Data world.
Stars: ✭ 20 (-99.87%)
Mutual labels:  icons, icon-pack, iconset
Tabler Icons
A set of over 1400 free MIT-licensed high-quality SVG icons for you to use in your web projects.
Stars: ✭ 10,858 (-31.29%)
Mutual labels:  icons, icon-pack, iconset
Vue Unicons
1000+ Pixel-perfect svg icons for your next project as Vue components
Stars: ✭ 828 (-94.76%)
Mutual labels:  icons, icon-pack, iconset
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (-23.49%)
Mutual labels:  icons, icon-pack, iconset
Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (-88.53%)
Mutual labels:  icons, icon-pack, iconset
majesticons
A versatile, beautiful, and scalable iconset. 760 icons each in line and solid style.
Stars: ✭ 98 (-99.38%)
Mutual labels:  icons, icon-pack, iconset
Icons Flat Osx
Free Flat icons For OSX
Stars: ✭ 366 (-97.68%)
Mutual labels:  icons, icon-pack, iconset
icons-flat-osx
Free Flat icons For OSX
Stars: ✭ 371 (-97.65%)
Mutual labels:  icons, icon-pack, iconset
app-starter
Angular mono-repo (Ionic/Capacitor/StencilJS/Web Component) app starter for supporting cross platform apps.
Stars: ✭ 75 (-99.53%)
Mutual labels:  ionic, webcomponents, stenciljs
Awesome Iconjar
44 Collect free icon sets for iconjar. 收集免费的图标包,iconjar 格式(44套)。
Stars: ✭ 188 (-98.81%)
Mutual labels:  icons, icon-pack, iconset
vector-icons
Free Vector icons for Website and Mobile App
Stars: ✭ 28 (-99.82%)
Mutual labels:  icons, icon-pack, iconset
simple-icons-pdf
PDF icons for popular brands
Stars: ✭ 16 (-99.9%)
Mutual labels:  icons, icon-pack, iconset
Evolvere Icons
Stars: ✭ 52 (-99.67%)
Mutual labels:  icons, icon-pack, iconset
Stencil
A toolchain for building scalable, enterprise-ready component systems on top of TypeScript and Web Component standards. Stencil components can be distributed natively to React, Angular, Vue, and traditional web developers from a single, framework-agnostic codebase.
Stars: ✭ 9,880 (-37.48%)
Mutual labels:  ionic, webcomponents, stenciljs
Supercons
A friendly, open source React iconset
Stars: ✭ 113 (-99.28%)
Mutual labels:  icons, icon-pack
Atoms
Atoms for Blaze UI
Stars: ✭ 1,505 (-90.48%)
Mutual labels:  webcomponents, stenciljs
Plane Icon Theme
Is a modern icon theme for gnome linux versions.
Stars: ✭ 117 (-99.26%)
Mutual labels:  icons, icon-pack
Paymentfont
A sleek webfont featuring your favourite payment methods
Stars: ✭ 1,586 (-89.96%)
Mutual labels:  icons, icon-pack

Ionicons

Ionicons is a completely open-source icon set with 1,300 icons crafted for web, iOS, Android, and desktop apps. Ionicons was built for Ionic Framework, so icons have both Material Design and iOS versions.

Note: All brand icons are trademarks of their respective owners. The use of these trademarks does not indicate endorsement of the trademark holder by Ionic, nor vice versa.

We intend for this icon pack to be used with Ionic, but it’s by no means limited to it. Use them wherever you see fit, personal or commercial. They are free to use and licensed under MIT.

Contributing

Thanks for your interest in contributing! Read up on our guidelines for contributing and then look through our issues with a help wanted label.

Using the Web Component

The Ionicons Web Component is an easy and performant way to use Ionicons in your app. The component will dynamically load an SVG for each icon, so your app is only requesting the icons that you need.

Also note that only visible icons are loaded, and icons which are "below the fold" and hidden from the user's view do not make fetch requests for the svg resource.

Installation

If you're using Ionic Framework, Ionicons is packaged by default, so no installation is necessary. Want to use Ionicons without Ionic Framework? Place the following <script> near the end of your page, right before the closing tag, to enable them.

<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>

Basic usage

To use a built-in icon from the Ionicons package, populate the name attribute on the ion-icon component:

<ion-icon name="heart"></ion-icon>

Custom icons

To use a custom SVG, provide its url in the src attribute to request the external SVG file. The src attribute works the same as <img src="..."> in that the url must be accessible from the webpage that's making a request for the image. Additionally, the external file can only be a valid svg and does not allow scripts or events within the svg element.

<ion-icon src="/path/to/external/file.svg"></ion-icon>

Variants

Each app icon in Ionicons has a filled, outline and sharp variant. These different variants are provided to make your app feel native to a variety of platforms. The filled variant uses the default name without a suffix. Note: Logo icons do not have outline or sharp variants.

<ion-icon name="heart"></ion-icon> <!--filled-->
<ion-icon name="heart-outline"></ion-icon> <!--outline-->
<ion-icon name="heart-sharp"></ion-icon> <!--sharp-->

Platform specificity

When using icons in Ionic Framework you can specify different icons per platform. Use the md and ios attributes and provide the platform specific icon/variant name.

<ion-icon ios="heart-outline" md="heart-sharp"></ion-icon>

Size

To specify the icon size, you can use the size attribute for our pre-defined font sizes.

<ion-icon size="small"></ion-icon>
<ion-icon size="large"></ion-icon>

Or you can set a specific size by applying the font-size CSS property on the ion-icon component. It's recommended to use pixel sizes that are a multiple of 8 (8, 16, 32, 64, etc.)

ion-icon {
  font-size: 64px;
}

Color

Specify the icon color by applying the color CSS property on the ion-icon component.

ion-icon {
  color: blue;
}

Stroke width

When using an outline icon variant it is possible to adjust the stroke width, for improved visual balance relative to the icon's size or relative to the width of adjacent text. You can set a specific size by applying the --ionicon-stroke-width CSS custom property to the ion-icon component. The default value is 32px.

<ion-icon name="heart-outline"></ion-icon>
ion-icon {
  --ionicon-stroke-width: 16px;
}

Migrating from v4

See the 5.0 release notes for a list of icon deletions/renames.

License

Ionicons is licensed under the MIT license.

Related

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].