内容简介:A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and aAll icons are built with SVG, so you can place them as
Tabler Icons
A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a 2px
stroke.
npm install tabler-icons --save
Preview
Usage
All icons are built with SVG, so you can place them as <img>
, background-image
and inline in HTML code.
HTML image
If you load an icon as an image, you can modify its size using CSS.
<img src="path/to/icon.svg" alt="icon title"/>
Inline HTML
You can paste the content of the icon file into your HTML code to display it on the page.
<a href=""> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.25" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> ... </svg> Click me </a>
Thanks to that, you can change the size, color and the stroke-width
of the icons with CSS code.
.icon-tabler { color: red; width: 32px; height: 32px; stroke-width: 1.25; }
SVG sprite
Add an icon to be displayed on your page with the following markup ( activity
in the above example can be replaced with any valid icon name):
<svg width="24" height="24"> <use xlink:href="path/to/tabler-sprite.svg#tabler-activity"/> </svg>
Multiple strokes
All icons in this repository have been created with the value of the stroke-width
property, so if you change the value, you can get different icon variants that will fit in well with your design.
License
Tabler Icons is licensed under the MIT License .
以上所述就是小编给大家介绍的《1 Over 300 free MIT-licensed high-quality SVG icons – Tabler Icons》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
UNIX网络编程 卷1:套接字联网API(第3版)
[美]W. 理查德•史蒂文斯(W. Richard Stevens)、比尔• 芬纳(Bill Fenner)、安德鲁 M. 鲁道夫(Andrew M. Rudoff) / 匿名 / 人民邮电出版社 / 2014-6-1 / 129.00
《UNIX环境高级编程(第3版)》是被誉为UNIX编程“圣经”的Advanced Programming in the UNIX Environment一书的第3版。在本书第2版出版后的8年中,UNIX行业发生了巨大的变化,特别是影响UNIX编程接口的有关标准变化很大。本书在保持前一版风格的基础上,根据最新的标准对内容进行了修订和增补,反映了最新的技术发展。书中除了介绍UNIX文件和目录、标准I/......一起来看看 《UNIX网络编程 卷1:套接字联网API(第3版)》 这本书的介绍吧!