All Projects → atisawd → Boxicons

atisawd / Boxicons

High Quality web friendly icons

Projects that are alternatives of or similar to Boxicons

Coreui Icons
CoreUI Free Icons - Premium designed free icon set with marks in SVG, Webfont and raster formats
Stars: ✭ 1,813 (+64.22%)
Mutual labels:  svg, icons, svg-icons, icon-font, icon-pack
Phosphor React
A flexible icon family for React
Stars: ✭ 97 (-91.21%)
Mutual labels:  svg, icons, svg-icons, icon-font, icon-pack
Phosphor Icons
A flexible icon family for the web
Stars: ✭ 56 (-94.93%)
Mutual labels:  svg, icons, svg-icons, icon-font, icon-pack
Icons
The premium icon font for @uiwjs Component Library. https://uiwjs.github.io/icons
Stars: ✭ 99 (-91.03%)
Mutual labels:  svg, icons, svg-icons, icon-font
Vue Unicons
1000+ Pixel-perfect svg icons for your next project as Vue components
Stars: ✭ 828 (-25%)
Mutual labels:  svg, icons, svg-icons, icon-pack
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 (+883.51%)
Mutual labels:  svg, icons, svg-icons, icon-pack
Simple Icons
SVG icons for popular brands
Stars: ✭ 12,090 (+995.11%)
Mutual labels:  svg, icons, svg-icons, icon-pack
Circle Flags
A collection of 300+ minimal circular SVG country flags
Stars: ✭ 139 (-87.41%)
Mutual labels:  svg, icons, svg-icons, icon-pack
Mono Icons
Stars: ✭ 899 (-18.57%)
Mutual labels:  svg, icons, svg-icons
icons
Simple, minimal line, and clean icon pack in vector formats — free for public use.
Stars: ✭ 24 (-97.83%)
Mutual labels:  icons, icon-pack, icon-font
Remixicon
Open source neutral style icon system
Stars: ✭ 3,956 (+258.33%)
Mutual labels:  svg, icon-font, icon-pack
Icons Flat Osx
Free Flat icons For OSX
Stars: ✭ 366 (-66.85%)
Mutual labels:  icons, svg-icons, icon-pack
icons-flat-osx
Free Flat icons For OSX
Stars: ✭ 371 (-66.39%)
Mutual labels:  icons, icon-pack, svg-icons
Grayshift
A lightweight front-end component library for developing fast and powerful web interfaces.
Stars: ✭ 304 (-72.46%)
Mutual labels:  svg, icons, svg-icons
phosphor-figma
A flexible icon family for Figma
Stars: ✭ 17 (-98.46%)
Mutual labels:  icons, icon-pack, svg-icons
Bytesize Icons
Tiny style-controlled SVG iconset (101 icons, 12kb)
Stars: ✭ 3,662 (+231.7%)
Mutual labels:  svg, icons, svg-icons
vector-icons
Free Vector icons for Website and Mobile App
Stars: ✭ 28 (-97.46%)
Mutual labels:  icons, icon-pack, svg-icons
Ikonate
Fully customisable & accessible vector icons
Stars: ✭ 3,392 (+207.25%)
Mutual labels:  svg, icons, icon-pack
Jam
Jam icons is a set of SVG icons designed for web projects, illustrations, print projects, etc. Licensed under MIT
Stars: ✭ 398 (-63.95%)
Mutual labels:  svg, icons, svg-icons
Browser Logos
🗂 High resolution web browser logos
Stars: ✭ 5,538 (+401.63%)
Mutual labels:  svg, icons, svg-icons

BoxIcons

Financial Contributors on Open Collective GitHub issues Twitter Donate

High Quality web friendly icons

'Boxicons' is a carefully designed open source iconset with 1000+ icons. It's crafted to look enrich your website/app experience.

Announcing Boxicons v2.0.7!

  • 40+ icons added.

Installation

To install via npm, simply do the following:

$ npm install boxicons --save

import the module

import 'boxicons';

Usage

Using via CSS

  1. Include the stylesheet on your document's <head>
<head>
  <link rel="stylesheet" href="boxicons.min.css">
</head>

Instead of installing you may use the remote version

<head>
  <link rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/[email protected]/css/boxicons.min.css">
  <!-- or -->
  <link rel="stylesheet"
  href="https://unpkg.com/[email protected]/css/boxicons.min.css">
</head>
  1. To use an icon on your page, add a class 'bx' and seperate class with the icons name with a prefix 'bx-' for regular icons , 'bxs-' for solid icons and 'bxl-' for logos:
<i class="bx bx-hot"></i>
<i class="bx bxs-hot"></i>
<i class="bx bxl-facebook-square"></i>

Using via Web Component

Boxicons includes a Custom Element that makes using icons easy and efficient. To use it, add the box-icon-element.js file to the page:

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

To use an icon, add the <box-icon> element to the location where the icon should be displayed:

<box-icon name="hot"></box-icon>

To use solid icons or logos add attribute type as solid or logo before the name

<box-icon type="solid" name="hot"></box-icon>
<box-icon type="logo" name="facebook-square"></box-icon>

The <box-icon> custom element supports the following attributes:

<box-icon
    type = "regular|solid|logo"
    name="adjust|alarms|etc...."
    color="blue|red|etc..."
    size="xs|sm|md|lg|cssSize"
    rotate="90|180|270"
    flip="horizontal|vertical"
    border="square|circle"
    animation="spin|tada|etc..."
    pull = "left|right"
></box-icon>
  • type: Should always be first and be one of the following values: regular,solid, logo

  • name : (REQUIRED) the name of the icon to be displayed

  • color: A color for the icon.

  • size: The size for the icon. It supports one of two types of values:

    • One of the following shortcuts: xs, sm, md, lg
    • A css unit size (ex. 60px)
  • rotate: one of the following values: 90, 180, 270

  • flip: one of the following values: horizontal, vertical

  • border: one of the following values: square, circle

  • animation: One of the following values: spin, tada, flashing, burst, fade-left, fade-right, spin-hover, tada-hover, flashing-hover, burst-hover, fade-left-hover, fade-right-hover

  • pull: one of the following values: left,right The Custom Element class (BoxIconElement) exposes the following static members:

  • tagName: property that holds the HTML element tag name. Default: box-icon

  • defined([tagName]): Defines the Element in the custom element registry using either the tagName provided on input or the (default) the one defined on the Class.

  • cdnUrl: property that holds the URL that will be used to retrieve the images. URL should point to the folder that contains the images. example: //unpkg.com/[email protected]/svg (no trailing forward slash)

  • getIconSvg(iconName): method used to retrieve the SVG image. Should return a Promise that resolves with the SVG source (String).

Check out all the icons here!

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

License

The icons (.svg) files are free to download and are licensed under CC 4.0 . By downloading it is assumed that you agree with the terms mentioned in CC 4.0. The fonts files are licensed under SIL OFL 1.1 Attribution is not required but is appreciated Other files which are not fonts or icons are licensed under the MIT License

You can read more about the license here!

Contributing

Pull requests are the way to go here. I apologise in advance for the slow action on pull requests and issues.

Caught a mistake or want to contribute to the documentation? Edit this page on Github

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].