├── .gitignore ├── .gitmodules ├── README.md ├── components ├── activity.vue ├── airplay.vue ├── alert-circle.vue ├── alert-octagon.vue ├── alert-triangle.vue ├── align-center.vue ├── align-justify.vue ├── align-left.vue ├── align-right.vue ├── anchor.vue ├── aperture.vue ├── arrow-down-left.vue ├── arrow-down-right.vue ├── arrow-down.vue ├── arrow-left.vue ├── arrow-right.vue ├── arrow-up-left.vue ├── arrow-up-right.vue ├── arrow-up.vue ├── at-sign.vue ├── award.vue ├── bar-chart-2.vue ├── bar-chart.vue ├── battery-charging.vue ├── battery.vue ├── bell-off.vue ├── bell.vue ├── bluetooth.vue ├── bold.vue ├── book.vue ├── bookmark.vue ├── box.vue ├── briefcase.vue ├── calendar.vue ├── camera-off.vue ├── camera.vue ├── cast.vue ├── check-circle.vue ├── check-square.vue ├── check.vue ├── chevron-down.vue ├── chevron-left.vue ├── chevron-right.vue ├── chevron-up.vue ├── chevrons-down.vue ├── chevrons-left.vue ├── chevrons-right.vue ├── chevrons-up.vue ├── chrome.vue ├── circle.vue ├── clipboard.vue ├── clock.vue ├── cloud-drizzle.vue ├── cloud-lightning.vue ├── cloud-off.vue ├── cloud-rain.vue ├── cloud-snow.vue ├── cloud.vue ├── codepen.vue ├── command.vue ├── compass.vue ├── copy.vue ├── corner-down-left.vue ├── corner-down-right.vue ├── corner-left-down.vue ├── corner-left-up.vue ├── corner-right-down.vue ├── corner-right-up.vue ├── corner-up-left.vue ├── corner-up-right.vue ├── cpu.vue ├── credit-card.vue ├── crop.vue ├── crosshair.vue ├── delete.vue ├── disc.vue ├── download-cloud.vue ├── download.vue ├── droplet.vue ├── edit-2.vue ├── edit-3.vue ├── edit.vue ├── external-link.vue ├── eye-off.vue ├── eye.vue ├── facebook.vue ├── fast-forward.vue ├── feather.vue ├── file-minus.vue ├── file-plus.vue ├── file-text.vue ├── file.vue ├── film.vue ├── filter.vue ├── flag.vue ├── folder.vue ├── github.vue ├── gitlab.vue ├── globe.vue ├── grid.vue ├── hash.vue ├── headphones.vue ├── heart.vue ├── help-circle.vue ├── home.vue ├── image.vue ├── inbox.vue ├── index.vue ├── info.vue ├── instagram.vue ├── italic.vue ├── layers.vue ├── layout.vue ├── life-buoy.vue ├── link-2.vue ├── link.vue ├── list.vue ├── loader.vue ├── lock.vue ├── log-in.vue ├── log-out.vue ├── mail.vue ├── map-pin.vue ├── map.vue ├── maximize-2.vue ├── maximize.vue ├── menu.vue ├── message-circle.vue ├── message-square.vue ├── mic-off.vue ├── mic.vue ├── minimize-2.vue ├── minimize.vue ├── minus-circle.vue ├── minus-square.vue ├── minus.vue ├── monitor.vue ├── moon.vue ├── more-horizontal.vue ├── more-vertical.vue ├── move.vue ├── music.vue ├── navigation-2.vue ├── navigation.vue ├── octagon.vue ├── package.vue ├── paperclip.vue ├── pause-circle.vue ├── pause.vue ├── percent.vue ├── phone-call.vue ├── phone-forwarded.vue ├── phone-incoming.vue ├── phone-missed.vue ├── phone-off.vue ├── phone-outgoing.vue ├── phone.vue ├── pie-chart.vue ├── play-circle.vue ├── play.vue ├── plus-circle.vue ├── plus-square.vue ├── plus.vue ├── pocket.vue ├── power.vue ├── printer.vue ├── radio.vue ├── refresh-ccw.vue ├── refresh-cw.vue ├── repeat.vue ├── rewind.vue ├── rotate-ccw.vue ├── rotate-cw.vue ├── save.vue ├── scissors.vue ├── search.vue ├── server.vue ├── settings.vue ├── share-2.vue ├── share.vue ├── shield.vue ├── shopping-cart.vue ├── shuffle.vue ├── sidebar.vue ├── skip-back.vue ├── skip-forward.vue ├── slack.vue ├── slash.vue ├── sliders.vue ├── smartphone.vue ├── speaker.vue ├── square.vue ├── star.vue ├── stop-circle.vue ├── sun.vue ├── sunrise.vue ├── sunset.vue ├── tablet.vue ├── tag.vue ├── target.vue ├── thermometer.vue ├── thumbs-down.vue ├── thumbs-up.vue ├── toggle-left.vue ├── toggle-right.vue ├── trash-2.vue ├── trash.vue ├── trending-down.vue ├── trending-up.vue ├── triangle.vue ├── tv.vue ├── twitter.vue ├── type.vue ├── umbrella.vue ├── underline.vue ├── unlock.vue ├── upload-cloud.vue ├── upload.vue ├── user-check.vue ├── user-minus.vue ├── user-plus.vue ├── user-x.vue ├── user.vue ├── users.vue ├── video-off.vue ├── video.vue ├── voicemail.vue ├── volume-1.vue ├── volume-2.vue ├── volume-x.vue ├── volume.vue ├── watch.vue ├── wifi-off.vue ├── wifi.vue ├── wind.vue ├── x-circle.vue ├── x-square.vue ├── x.vue ├── zap.vue ├── zoom-in.vue └── zoom-out.vue ├── gulpfile.js ├── index.js ├── package.json └── plugin.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | demo 3 | index.html -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/README.md -------------------------------------------------------------------------------- /components/activity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/activity.vue -------------------------------------------------------------------------------- /components/airplay.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/airplay.vue -------------------------------------------------------------------------------- /components/alert-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/alert-circle.vue -------------------------------------------------------------------------------- /components/alert-octagon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/alert-octagon.vue -------------------------------------------------------------------------------- /components/alert-triangle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/alert-triangle.vue -------------------------------------------------------------------------------- /components/align-center.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/align-center.vue -------------------------------------------------------------------------------- /components/align-justify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/align-justify.vue -------------------------------------------------------------------------------- /components/align-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/align-left.vue -------------------------------------------------------------------------------- /components/align-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/align-right.vue -------------------------------------------------------------------------------- /components/anchor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/anchor.vue -------------------------------------------------------------------------------- /components/aperture.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/aperture.vue -------------------------------------------------------------------------------- /components/arrow-down-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-down-left.vue -------------------------------------------------------------------------------- /components/arrow-down-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-down-right.vue -------------------------------------------------------------------------------- /components/arrow-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-down.vue -------------------------------------------------------------------------------- /components/arrow-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-left.vue -------------------------------------------------------------------------------- /components/arrow-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-right.vue -------------------------------------------------------------------------------- /components/arrow-up-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-up-left.vue -------------------------------------------------------------------------------- /components/arrow-up-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-up-right.vue -------------------------------------------------------------------------------- /components/arrow-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/arrow-up.vue -------------------------------------------------------------------------------- /components/at-sign.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/at-sign.vue -------------------------------------------------------------------------------- /components/award.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/award.vue -------------------------------------------------------------------------------- /components/bar-chart-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bar-chart-2.vue -------------------------------------------------------------------------------- /components/bar-chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bar-chart.vue -------------------------------------------------------------------------------- /components/battery-charging.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/battery-charging.vue -------------------------------------------------------------------------------- /components/battery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/battery.vue -------------------------------------------------------------------------------- /components/bell-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bell-off.vue -------------------------------------------------------------------------------- /components/bell.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bell.vue -------------------------------------------------------------------------------- /components/bluetooth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bluetooth.vue -------------------------------------------------------------------------------- /components/bold.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bold.vue -------------------------------------------------------------------------------- /components/book.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/book.vue -------------------------------------------------------------------------------- /components/bookmark.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/bookmark.vue -------------------------------------------------------------------------------- /components/box.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/box.vue -------------------------------------------------------------------------------- /components/briefcase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/briefcase.vue -------------------------------------------------------------------------------- /components/calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/calendar.vue -------------------------------------------------------------------------------- /components/camera-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/camera-off.vue -------------------------------------------------------------------------------- /components/camera.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/camera.vue -------------------------------------------------------------------------------- /components/cast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cast.vue -------------------------------------------------------------------------------- /components/check-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/check-circle.vue -------------------------------------------------------------------------------- /components/check-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/check-square.vue -------------------------------------------------------------------------------- /components/check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/check.vue -------------------------------------------------------------------------------- /components/chevron-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevron-down.vue -------------------------------------------------------------------------------- /components/chevron-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevron-left.vue -------------------------------------------------------------------------------- /components/chevron-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevron-right.vue -------------------------------------------------------------------------------- /components/chevron-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevron-up.vue -------------------------------------------------------------------------------- /components/chevrons-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevrons-down.vue -------------------------------------------------------------------------------- /components/chevrons-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevrons-left.vue -------------------------------------------------------------------------------- /components/chevrons-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevrons-right.vue -------------------------------------------------------------------------------- /components/chevrons-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chevrons-up.vue -------------------------------------------------------------------------------- /components/chrome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/chrome.vue -------------------------------------------------------------------------------- /components/circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/circle.vue -------------------------------------------------------------------------------- /components/clipboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/clipboard.vue -------------------------------------------------------------------------------- /components/clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/clock.vue -------------------------------------------------------------------------------- /components/cloud-drizzle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud-drizzle.vue -------------------------------------------------------------------------------- /components/cloud-lightning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud-lightning.vue -------------------------------------------------------------------------------- /components/cloud-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud-off.vue -------------------------------------------------------------------------------- /components/cloud-rain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud-rain.vue -------------------------------------------------------------------------------- /components/cloud-snow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud-snow.vue -------------------------------------------------------------------------------- /components/cloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cloud.vue -------------------------------------------------------------------------------- /components/codepen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/codepen.vue -------------------------------------------------------------------------------- /components/command.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/command.vue -------------------------------------------------------------------------------- /components/compass.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/compass.vue -------------------------------------------------------------------------------- /components/copy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/copy.vue -------------------------------------------------------------------------------- /components/corner-down-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-down-left.vue -------------------------------------------------------------------------------- /components/corner-down-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-down-right.vue -------------------------------------------------------------------------------- /components/corner-left-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-left-down.vue -------------------------------------------------------------------------------- /components/corner-left-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-left-up.vue -------------------------------------------------------------------------------- /components/corner-right-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-right-down.vue -------------------------------------------------------------------------------- /components/corner-right-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-right-up.vue -------------------------------------------------------------------------------- /components/corner-up-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-up-left.vue -------------------------------------------------------------------------------- /components/corner-up-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/corner-up-right.vue -------------------------------------------------------------------------------- /components/cpu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/cpu.vue -------------------------------------------------------------------------------- /components/credit-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/credit-card.vue -------------------------------------------------------------------------------- /components/crop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/crop.vue -------------------------------------------------------------------------------- /components/crosshair.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/crosshair.vue -------------------------------------------------------------------------------- /components/delete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/delete.vue -------------------------------------------------------------------------------- /components/disc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/disc.vue -------------------------------------------------------------------------------- /components/download-cloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/download-cloud.vue -------------------------------------------------------------------------------- /components/download.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/download.vue -------------------------------------------------------------------------------- /components/droplet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/droplet.vue -------------------------------------------------------------------------------- /components/edit-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/edit-2.vue -------------------------------------------------------------------------------- /components/edit-3.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/edit-3.vue -------------------------------------------------------------------------------- /components/edit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/edit.vue -------------------------------------------------------------------------------- /components/external-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/external-link.vue -------------------------------------------------------------------------------- /components/eye-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/eye-off.vue -------------------------------------------------------------------------------- /components/eye.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/eye.vue -------------------------------------------------------------------------------- /components/facebook.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/facebook.vue -------------------------------------------------------------------------------- /components/fast-forward.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/fast-forward.vue -------------------------------------------------------------------------------- /components/feather.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/feather.vue -------------------------------------------------------------------------------- /components/file-minus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/file-minus.vue -------------------------------------------------------------------------------- /components/file-plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/file-plus.vue -------------------------------------------------------------------------------- /components/file-text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/file-text.vue -------------------------------------------------------------------------------- /components/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/file.vue -------------------------------------------------------------------------------- /components/film.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/film.vue -------------------------------------------------------------------------------- /components/filter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/filter.vue -------------------------------------------------------------------------------- /components/flag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/flag.vue -------------------------------------------------------------------------------- /components/folder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/folder.vue -------------------------------------------------------------------------------- /components/github.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/github.vue -------------------------------------------------------------------------------- /components/gitlab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/gitlab.vue -------------------------------------------------------------------------------- /components/globe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/globe.vue -------------------------------------------------------------------------------- /components/grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/grid.vue -------------------------------------------------------------------------------- /components/hash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/hash.vue -------------------------------------------------------------------------------- /components/headphones.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/headphones.vue -------------------------------------------------------------------------------- /components/heart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/heart.vue -------------------------------------------------------------------------------- /components/help-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/help-circle.vue -------------------------------------------------------------------------------- /components/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/home.vue -------------------------------------------------------------------------------- /components/image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/image.vue -------------------------------------------------------------------------------- /components/inbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/inbox.vue -------------------------------------------------------------------------------- /components/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/index.vue -------------------------------------------------------------------------------- /components/info.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/info.vue -------------------------------------------------------------------------------- /components/instagram.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/instagram.vue -------------------------------------------------------------------------------- /components/italic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/italic.vue -------------------------------------------------------------------------------- /components/layers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/layers.vue -------------------------------------------------------------------------------- /components/layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/layout.vue -------------------------------------------------------------------------------- /components/life-buoy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/life-buoy.vue -------------------------------------------------------------------------------- /components/link-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/link-2.vue -------------------------------------------------------------------------------- /components/link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/link.vue -------------------------------------------------------------------------------- /components/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/list.vue -------------------------------------------------------------------------------- /components/loader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/loader.vue -------------------------------------------------------------------------------- /components/lock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/lock.vue -------------------------------------------------------------------------------- /components/log-in.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/log-in.vue -------------------------------------------------------------------------------- /components/log-out.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/log-out.vue -------------------------------------------------------------------------------- /components/mail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/mail.vue -------------------------------------------------------------------------------- /components/map-pin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/map-pin.vue -------------------------------------------------------------------------------- /components/map.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/map.vue -------------------------------------------------------------------------------- /components/maximize-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/maximize-2.vue -------------------------------------------------------------------------------- /components/maximize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/maximize.vue -------------------------------------------------------------------------------- /components/menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/menu.vue -------------------------------------------------------------------------------- /components/message-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/message-circle.vue -------------------------------------------------------------------------------- /components/message-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/message-square.vue -------------------------------------------------------------------------------- /components/mic-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/mic-off.vue -------------------------------------------------------------------------------- /components/mic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/mic.vue -------------------------------------------------------------------------------- /components/minimize-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/minimize-2.vue -------------------------------------------------------------------------------- /components/minimize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/minimize.vue -------------------------------------------------------------------------------- /components/minus-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/minus-circle.vue -------------------------------------------------------------------------------- /components/minus-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/minus-square.vue -------------------------------------------------------------------------------- /components/minus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/minus.vue -------------------------------------------------------------------------------- /components/monitor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/monitor.vue -------------------------------------------------------------------------------- /components/moon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/moon.vue -------------------------------------------------------------------------------- /components/more-horizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/more-horizontal.vue -------------------------------------------------------------------------------- /components/more-vertical.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/more-vertical.vue -------------------------------------------------------------------------------- /components/move.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/move.vue -------------------------------------------------------------------------------- /components/music.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/music.vue -------------------------------------------------------------------------------- /components/navigation-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/navigation-2.vue -------------------------------------------------------------------------------- /components/navigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/navigation.vue -------------------------------------------------------------------------------- /components/octagon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/octagon.vue -------------------------------------------------------------------------------- /components/package.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/package.vue -------------------------------------------------------------------------------- /components/paperclip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/paperclip.vue -------------------------------------------------------------------------------- /components/pause-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/pause-circle.vue -------------------------------------------------------------------------------- /components/pause.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/pause.vue -------------------------------------------------------------------------------- /components/percent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/percent.vue -------------------------------------------------------------------------------- /components/phone-call.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-call.vue -------------------------------------------------------------------------------- /components/phone-forwarded.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-forwarded.vue -------------------------------------------------------------------------------- /components/phone-incoming.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-incoming.vue -------------------------------------------------------------------------------- /components/phone-missed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-missed.vue -------------------------------------------------------------------------------- /components/phone-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-off.vue -------------------------------------------------------------------------------- /components/phone-outgoing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone-outgoing.vue -------------------------------------------------------------------------------- /components/phone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/phone.vue -------------------------------------------------------------------------------- /components/pie-chart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/pie-chart.vue -------------------------------------------------------------------------------- /components/play-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/play-circle.vue -------------------------------------------------------------------------------- /components/play.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/play.vue -------------------------------------------------------------------------------- /components/plus-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/plus-circle.vue -------------------------------------------------------------------------------- /components/plus-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/plus-square.vue -------------------------------------------------------------------------------- /components/plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/plus.vue -------------------------------------------------------------------------------- /components/pocket.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/pocket.vue -------------------------------------------------------------------------------- /components/power.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/power.vue -------------------------------------------------------------------------------- /components/printer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/printer.vue -------------------------------------------------------------------------------- /components/radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/radio.vue -------------------------------------------------------------------------------- /components/refresh-ccw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/refresh-ccw.vue -------------------------------------------------------------------------------- /components/refresh-cw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/refresh-cw.vue -------------------------------------------------------------------------------- /components/repeat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/repeat.vue -------------------------------------------------------------------------------- /components/rewind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/rewind.vue -------------------------------------------------------------------------------- /components/rotate-ccw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/rotate-ccw.vue -------------------------------------------------------------------------------- /components/rotate-cw.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/rotate-cw.vue -------------------------------------------------------------------------------- /components/save.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/save.vue -------------------------------------------------------------------------------- /components/scissors.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/scissors.vue -------------------------------------------------------------------------------- /components/search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/search.vue -------------------------------------------------------------------------------- /components/server.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/server.vue -------------------------------------------------------------------------------- /components/settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/settings.vue -------------------------------------------------------------------------------- /components/share-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/share-2.vue -------------------------------------------------------------------------------- /components/share.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/share.vue -------------------------------------------------------------------------------- /components/shield.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/shield.vue -------------------------------------------------------------------------------- /components/shopping-cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/shopping-cart.vue -------------------------------------------------------------------------------- /components/shuffle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/shuffle.vue -------------------------------------------------------------------------------- /components/sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/sidebar.vue -------------------------------------------------------------------------------- /components/skip-back.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/skip-back.vue -------------------------------------------------------------------------------- /components/skip-forward.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/skip-forward.vue -------------------------------------------------------------------------------- /components/slack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/slack.vue -------------------------------------------------------------------------------- /components/slash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/slash.vue -------------------------------------------------------------------------------- /components/sliders.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/sliders.vue -------------------------------------------------------------------------------- /components/smartphone.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/smartphone.vue -------------------------------------------------------------------------------- /components/speaker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/speaker.vue -------------------------------------------------------------------------------- /components/square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/square.vue -------------------------------------------------------------------------------- /components/star.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/star.vue -------------------------------------------------------------------------------- /components/stop-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/stop-circle.vue -------------------------------------------------------------------------------- /components/sun.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/sun.vue -------------------------------------------------------------------------------- /components/sunrise.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/sunrise.vue -------------------------------------------------------------------------------- /components/sunset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/sunset.vue -------------------------------------------------------------------------------- /components/tablet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/tablet.vue -------------------------------------------------------------------------------- /components/tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/tag.vue -------------------------------------------------------------------------------- /components/target.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/target.vue -------------------------------------------------------------------------------- /components/thermometer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/thermometer.vue -------------------------------------------------------------------------------- /components/thumbs-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/thumbs-down.vue -------------------------------------------------------------------------------- /components/thumbs-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/thumbs-up.vue -------------------------------------------------------------------------------- /components/toggle-left.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/toggle-left.vue -------------------------------------------------------------------------------- /components/toggle-right.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/toggle-right.vue -------------------------------------------------------------------------------- /components/trash-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/trash-2.vue -------------------------------------------------------------------------------- /components/trash.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/trash.vue -------------------------------------------------------------------------------- /components/trending-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/trending-down.vue -------------------------------------------------------------------------------- /components/trending-up.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/trending-up.vue -------------------------------------------------------------------------------- /components/triangle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/triangle.vue -------------------------------------------------------------------------------- /components/tv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/tv.vue -------------------------------------------------------------------------------- /components/twitter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/twitter.vue -------------------------------------------------------------------------------- /components/type.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/type.vue -------------------------------------------------------------------------------- /components/umbrella.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/umbrella.vue -------------------------------------------------------------------------------- /components/underline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/underline.vue -------------------------------------------------------------------------------- /components/unlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/unlock.vue -------------------------------------------------------------------------------- /components/upload-cloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/upload-cloud.vue -------------------------------------------------------------------------------- /components/upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/upload.vue -------------------------------------------------------------------------------- /components/user-check.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/user-check.vue -------------------------------------------------------------------------------- /components/user-minus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/user-minus.vue -------------------------------------------------------------------------------- /components/user-plus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/user-plus.vue -------------------------------------------------------------------------------- /components/user-x.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/user-x.vue -------------------------------------------------------------------------------- /components/user.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/user.vue -------------------------------------------------------------------------------- /components/users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/users.vue -------------------------------------------------------------------------------- /components/video-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/video-off.vue -------------------------------------------------------------------------------- /components/video.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/video.vue -------------------------------------------------------------------------------- /components/voicemail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/voicemail.vue -------------------------------------------------------------------------------- /components/volume-1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/volume-1.vue -------------------------------------------------------------------------------- /components/volume-2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/volume-2.vue -------------------------------------------------------------------------------- /components/volume-x.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/volume-x.vue -------------------------------------------------------------------------------- /components/volume.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/volume.vue -------------------------------------------------------------------------------- /components/watch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/watch.vue -------------------------------------------------------------------------------- /components/wifi-off.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/wifi-off.vue -------------------------------------------------------------------------------- /components/wifi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/wifi.vue -------------------------------------------------------------------------------- /components/wind.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/wind.vue -------------------------------------------------------------------------------- /components/x-circle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/x-circle.vue -------------------------------------------------------------------------------- /components/x-square.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/x-square.vue -------------------------------------------------------------------------------- /components/x.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/x.vue -------------------------------------------------------------------------------- /components/zap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/zap.vue -------------------------------------------------------------------------------- /components/zoom-in.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/zoom-in.vue -------------------------------------------------------------------------------- /components/zoom-out.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/components/zoom-out.vue -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/package.json -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tthallos/vue-feather-icon/HEAD/plugin.js --------------------------------------------------------------------------------