Documentation
IntroductionLayout
Text
- Accordion
- Alert
- Animation
- Align
- Badge
- Base
- Breadcrumb
- Button
- Card
- Close
- Comment
- Description List
- Divider
- Dotnav
- Drop
- Dropdown
- Filter
- Form
- Height
- Icon
- Iconnav
- Image
- Inverse
- Label
- Leader
- Lightbox
- Link
- List
- Margin
- Marker
- Modal
- Nav
- Navbar
- Notification
- Off-canvas
- Overlay
- Padding
- Pagination
- Parallax
- Placeholder
- Position
- Print
- Progress
- Scroll
- Scrollspy
- Search
- Section
- Slidenav
- Slider
- Slideshow
- Sortable
- Spinner
- Sticky
- Subnav
- SVG
- Switcher
- Tab
- Table
- Thumbnav
- Tile
- Toggle
- Tooltip
- Totop
- Transition
- Upload
- Utility
- Video
- Visibility
Icon
Place scalable vector icons anywhere in your content.
UIkit comes with its own SVG icon system and a comprehensive library, which comprises a growing number of elegant outline icons. This component injects SVGs into the site, so that they adopt color and can be styled with CSS.
To apply this component, add the uk-icon
attribute to a <span>
or <a>
element. To display the actual icon, you need to append the icon: NAME
parameter to the attribute. Et voilà, you have a vector icon which inherits color just like your text does.
<span uk-icon="icon: check"></span>
<a href="" uk-icon="icon: heart"></a>
If icon
is the only option in the attribute value, you can also use uk-icon="NAME"
<span uk-icon="heart"></span>
<span class="uk-margin-small-right" uk-icon="check"></span>
<a href="" uk-icon="heart"></a>
Library
Here is an overview of all currently available icons. Over time, we will keep adding new icons to the list.
App
- home
- sign-in
- sign-out
- user
- users
- lock
- unlock
- settings
- cog
- nut
- comment
- commenting
- comments
- hashtag
- tag
- cart
- bag
- credit-card
- receiver
- search
- location
- bookmark
- code
- paint-bucket
- camera
- video-camera
- bell
- microphone
- bolt
- star
- heart
- happy
- lifesaver
- rss
- social
- git-branch
- git-fork
- world
- calendar
- clock
- history
- future
- pencil
- trash
- move
- link
- question
- info
- warning
- image
- thumbnails
- table
- list
- menu
- grid
- more
- more-vertical
- plus
- plus-circle
- minus
- minus-circle
- close
- check
- ban
- refresh
- play
- play-circle
Devices
- tv
- desktop
- laptop
- tablet
- phone
- tablet-landscape
- phone-landscape
Storage
- file
- file-text
- file-pdf
- copy
- file-edit
- folder
- album
- push
- pull
- server
- database
- cloud-upload
- cloud-download
- download
- upload
Direction
- reply
- forward
- expand
- shrink
- arrow-up
- arrow-down
- arrow-left
- arrow-right
- chevron-up
- chevron-down
- chevron-left
- chevron-right
- chevron-double-left
- chevron-double-right
- triangle-up
- triangle-down
- triangle-left
- triangle-right
Editor
- bold
- italic
- strikethrough
- quote-right
Brands
- 500px
- behance
- discord
- dribbble
- etsy
- flickr
- foursquare
- github
- github-alt
- gitter
- joomla
- pagekit
- soundcloud
- tiktok
- tripadvisor
- tumblr
- twitch
- uikit
- vimeo
- wordpress
- yelp
- youtube
Ratio
Add the ratio: 2
parameter to the uk-icon
attribute to double its size – or any other number, depending on how big you want you icon to be.
<span uk-icon="icon: check; ratio: 2"></span>
<span class="uk-margin-small-right" uk-icon="icon: check; ratio: 2"></span>
<span uk-icon="icon: check; ratio: 3.5"></span>
Link modifier
To reset the default link styling to a more muted color when using an icon inside an anchor, add the .uk-icon-link
class.
<a href="" class="uk-icon-link" uk-icon="heart"></a>
<a href="#" class="uk-icon-link uk-margin-small-right" uk-icon="copy"></a>
<a href="#" class="uk-icon-link uk-margin-small-right" uk-icon="file-edit"></a>
<a href="#" class="uk-icon-link" uk-icon="trash"></a>
Button modifier
Use the modifier .uk-icon-button
class on an <a>
element to create an icon button, which can be used for social icons.
<a href="" class="uk-icon-button" uk-icon="twitter"></a>
<a href="" class="uk-icon-button uk-margin-small-right" uk-icon="twitter"></a>
<a href="" class="uk-icon-button uk-margin-small-right" uk-icon="facebook"></a>
<a href="" class="uk-icon-button" uk-icon="youtube"></a>
Image modifier
You can also make any background image scale to the size of an icon. Just add the .uk-icon-image
class and a background image path.
<span class="uk-icon uk-icon-image" style="background-image: url(images/dark.jpg);"></span>
Component options
Any of these options can be applied to the component attribute. Separate multiple options with a semicolon. Learn more
Option | Value | Default | Description |
---|---|---|---|
icon |
String | '' |
The icon to display. |
ratio |
Number | 1 |
The icon size ratio. |
icon
is the Primary option and its key may be omitted, if it’s the only option in the attribute value.
<span uk-icon="heart"></span>
JavaScript
Learn more about JavaScript components.
Initialization
UIkit.icon(element, options);
Properties
svg
A JavaScript Promise that will resolve with the added SVG Node.
UIkit.icon(element).svg.then(function(svg) { svg.querySelector('path').style.stroke = 'red'; })