├── .eslintignore ├── .gitignore ├── .npmignore ├── README.md ├── docs ├── index.html ├── index.js └── index.scss ├── package.json ├── src └── index.js └── svg ├── account-login.svg ├── account-logout.svg ├── action-redo.svg ├── action-undo.svg ├── align-center.svg ├── align-left.svg ├── align-right.svg ├── aperture.svg ├── arrow-bottom.svg ├── arrow-circle-bottom.svg ├── arrow-circle-left.svg ├── arrow-circle-right.svg ├── arrow-circle-top.svg ├── arrow-left.svg ├── arrow-right.svg ├── arrow-thick-bottom.svg ├── arrow-thick-left.svg ├── arrow-thick-right.svg ├── arrow-thick-top.svg ├── arrow-top.svg ├── audio-spectrum.svg ├── audio.svg ├── badge.svg ├── ban.svg ├── bar-chart.svg ├── basket.svg ├── battery-empty.svg ├── battery-full.svg ├── beaker.svg ├── bell.svg ├── bluetooth.svg ├── bold.svg ├── bolt.svg ├── book.svg ├── bookmark.svg ├── box.svg ├── briefcase.svg ├── british-pound.svg ├── browser.svg ├── brush.svg ├── bug.svg ├── bullhorn.svg ├── calculator.svg ├── calendar.svg ├── camera-slr.svg ├── camera.svg ├── caret-bottom.svg ├── caret-left.svg ├── caret-right.svg ├── caret-top.svg ├── cart.svg ├── chat.svg ├── check.svg ├── checkbox-checked.svg ├── checkbox-unchecked.svg ├── chevron-bottom.svg ├── chevron-left.svg ├── chevron-right.svg ├── chevron-top.svg ├── circle-check.svg ├── circle-x.svg ├── clipboard.svg ├── clock.svg ├── close.svg ├── cloud-download.svg ├── cloud-upload.svg ├── cloud.svg ├── cloudy.svg ├── code.svg ├── cog.svg ├── collapse-down.svg ├── collapse-left.svg ├── collapse-right.svg ├── collapse-up.svg ├── command.svg ├── comment-square.svg ├── compass.svg ├── contrast.svg ├── copywriting.svg ├── credit-card.svg ├── crop.svg ├── dashboard.svg ├── data-transfer-download.svg ├── data-transfer-upload.svg ├── delete.svg ├── dial.svg ├── document.svg ├── dollar.svg ├── double-quote-sans-left.svg ├── double-quote-sans-right.svg ├── double-quote-serif-left.svg ├── double-quote-serif-right.svg ├── droplet.svg ├── eject.svg ├── elevator.svg ├── ellipses.svg ├── envelope-closed.svg ├── envelope-open.svg ├── euro.svg ├── excerpt.svg ├── expand-down.svg ├── expand-left.svg ├── expand-right.svg ├── expand-up.svg ├── external-link.svg ├── eye.svg ├── eyedropper.svg ├── file.svg ├── fire.svg ├── flag.svg ├── flash.svg ├── folder.svg ├── fork.svg ├── fullscreen-enter.svg ├── fullscreen-exit.svg ├── globe.svg ├── graph.svg ├── grid-four-up.svg ├── grid-three-up.svg ├── grid-two-up.svg ├── hard-drive.svg ├── header.svg ├── headphones.svg ├── heart.svg ├── home.svg ├── image.svg ├── inbox.svg ├── infinity.svg ├── info.svg ├── italic.svg ├── justify-center.svg ├── justify-left.svg ├── justify-right.svg ├── key.svg ├── laptop.svg ├── layers.svg ├── lightbulb.svg ├── line-check.svg ├── line-error.svg ├── line-info.svg ├── line-warning.svg ├── link-broken.svg ├── link-intact.svg ├── list-rich.svg ├── list.svg ├── location.svg ├── lock-locked.svg ├── lock-unlocked.svg ├── loop-circular.svg ├── loop-square.svg ├── loop.svg ├── magnifying-glass.svg ├── map-marker.svg ├── map.svg ├── media-pause.svg ├── media-play.svg ├── media-record.svg ├── media-skip-backward.svg ├── media-skip-forward.svg ├── media-step-backward.svg ├── media-step-forward.svg ├── media-stop.svg ├── medical-cross.svg ├── menu.svg ├── microphone.svg ├── minus.svg ├── monitor.svg ├── moon.svg ├── move.svg ├── musical-note.svg ├── paperclip.svg ├── pencil.svg ├── people.svg ├── person.svg ├── phone.svg ├── pie-chart.svg ├── pin.svg ├── play-circle.svg ├── plus.svg ├── power-standby.svg ├── print.svg ├── project.svg ├── pulse.svg ├── puzzle-piece.svg ├── question-mark.svg ├── rain.svg ├── random.svg ├── reload.svg ├── resize-both.svg ├── resize-height.svg ├── resize-width.svg ├── rotate.svg ├── rss-alt.svg ├── rss.svg ├── script.svg ├── share-boxed.svg ├── share.svg ├── shield.svg ├── signal.svg ├── signpost.svg ├── social-facebook.svg ├── social-github.svg ├── social-googleplus.svg ├── social-instagram.svg ├── social-linkedin.svg ├── social-pinterest.svg ├── social-tumblr.svg ├── social-twitter.svg ├── social-vimeo.svg ├── social-youtube.svg ├── sort-ascending.svg ├── sort-descending.svg ├── spreadsheet.svg ├── star-empty.svg ├── star-half.svg ├── star.svg ├── sun.svg ├── tablet.svg ├── tag.svg ├── tags.svg ├── target.svg ├── task.svg ├── terminal.svg ├── text.svg ├── thumb-down.svg ├── thumb-up.svg ├── timer.svg ├── transfer.svg ├── trash.svg ├── underline.svg ├── vertical-align-bottom.svg ├── vertical-align-center.svg ├── vertical-align-top.svg ├── video.svg ├── volume-high.svg ├── volume-low.svg ├── volume-off.svg ├── warning.svg ├── wifi.svg ├── wrench.svg ├── x.svg ├── yen.svg ├── zoom-in.svg └── zoom-out.svg /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | dist 3 | node_modules 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/docs/index.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/src/index.js -------------------------------------------------------------------------------- /svg/account-login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/account-login.svg -------------------------------------------------------------------------------- /svg/account-logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/account-logout.svg -------------------------------------------------------------------------------- /svg/action-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/action-redo.svg -------------------------------------------------------------------------------- /svg/action-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/action-undo.svg -------------------------------------------------------------------------------- /svg/align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/align-center.svg -------------------------------------------------------------------------------- /svg/align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/align-left.svg -------------------------------------------------------------------------------- /svg/align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/align-right.svg -------------------------------------------------------------------------------- /svg/aperture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/aperture.svg -------------------------------------------------------------------------------- /svg/arrow-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-bottom.svg -------------------------------------------------------------------------------- /svg/arrow-circle-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-circle-bottom.svg -------------------------------------------------------------------------------- /svg/arrow-circle-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-circle-left.svg -------------------------------------------------------------------------------- /svg/arrow-circle-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-circle-right.svg -------------------------------------------------------------------------------- /svg/arrow-circle-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-circle-top.svg -------------------------------------------------------------------------------- /svg/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-left.svg -------------------------------------------------------------------------------- /svg/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-right.svg -------------------------------------------------------------------------------- /svg/arrow-thick-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-thick-bottom.svg -------------------------------------------------------------------------------- /svg/arrow-thick-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-thick-left.svg -------------------------------------------------------------------------------- /svg/arrow-thick-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-thick-right.svg -------------------------------------------------------------------------------- /svg/arrow-thick-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-thick-top.svg -------------------------------------------------------------------------------- /svg/arrow-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/arrow-top.svg -------------------------------------------------------------------------------- /svg/audio-spectrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/audio-spectrum.svg -------------------------------------------------------------------------------- /svg/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/audio.svg -------------------------------------------------------------------------------- /svg/badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/badge.svg -------------------------------------------------------------------------------- /svg/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/ban.svg -------------------------------------------------------------------------------- /svg/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bar-chart.svg -------------------------------------------------------------------------------- /svg/basket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/basket.svg -------------------------------------------------------------------------------- /svg/battery-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/battery-empty.svg -------------------------------------------------------------------------------- /svg/battery-full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/battery-full.svg -------------------------------------------------------------------------------- /svg/beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/beaker.svg -------------------------------------------------------------------------------- /svg/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bell.svg -------------------------------------------------------------------------------- /svg/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bluetooth.svg -------------------------------------------------------------------------------- /svg/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bold.svg -------------------------------------------------------------------------------- /svg/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bolt.svg -------------------------------------------------------------------------------- /svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/book.svg -------------------------------------------------------------------------------- /svg/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bookmark.svg -------------------------------------------------------------------------------- /svg/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/box.svg -------------------------------------------------------------------------------- /svg/briefcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/briefcase.svg -------------------------------------------------------------------------------- /svg/british-pound.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/british-pound.svg -------------------------------------------------------------------------------- /svg/browser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/browser.svg -------------------------------------------------------------------------------- /svg/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/brush.svg -------------------------------------------------------------------------------- /svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bug.svg -------------------------------------------------------------------------------- /svg/bullhorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/bullhorn.svg -------------------------------------------------------------------------------- /svg/calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/calculator.svg -------------------------------------------------------------------------------- /svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/calendar.svg -------------------------------------------------------------------------------- /svg/camera-slr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/camera-slr.svg -------------------------------------------------------------------------------- /svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/camera.svg -------------------------------------------------------------------------------- /svg/caret-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/caret-bottom.svg -------------------------------------------------------------------------------- /svg/caret-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/caret-left.svg -------------------------------------------------------------------------------- /svg/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/caret-right.svg -------------------------------------------------------------------------------- /svg/caret-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/caret-top.svg -------------------------------------------------------------------------------- /svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cart.svg -------------------------------------------------------------------------------- /svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/chat.svg -------------------------------------------------------------------------------- /svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/check.svg -------------------------------------------------------------------------------- /svg/checkbox-checked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/checkbox-checked.svg -------------------------------------------------------------------------------- /svg/checkbox-unchecked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/checkbox-unchecked.svg -------------------------------------------------------------------------------- /svg/chevron-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/chevron-bottom.svg -------------------------------------------------------------------------------- /svg/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/chevron-left.svg -------------------------------------------------------------------------------- /svg/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/chevron-right.svg -------------------------------------------------------------------------------- /svg/chevron-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/chevron-top.svg -------------------------------------------------------------------------------- /svg/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/circle-check.svg -------------------------------------------------------------------------------- /svg/circle-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/circle-x.svg -------------------------------------------------------------------------------- /svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/clipboard.svg -------------------------------------------------------------------------------- /svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/clock.svg -------------------------------------------------------------------------------- /svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/close.svg -------------------------------------------------------------------------------- /svg/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cloud-download.svg -------------------------------------------------------------------------------- /svg/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cloud-upload.svg -------------------------------------------------------------------------------- /svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cloud.svg -------------------------------------------------------------------------------- /svg/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cloudy.svg -------------------------------------------------------------------------------- /svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/code.svg -------------------------------------------------------------------------------- /svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/cog.svg -------------------------------------------------------------------------------- /svg/collapse-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/collapse-down.svg -------------------------------------------------------------------------------- /svg/collapse-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/collapse-left.svg -------------------------------------------------------------------------------- /svg/collapse-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/collapse-right.svg -------------------------------------------------------------------------------- /svg/collapse-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/collapse-up.svg -------------------------------------------------------------------------------- /svg/command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/command.svg -------------------------------------------------------------------------------- /svg/comment-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/comment-square.svg -------------------------------------------------------------------------------- /svg/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/compass.svg -------------------------------------------------------------------------------- /svg/contrast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/contrast.svg -------------------------------------------------------------------------------- /svg/copywriting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/copywriting.svg -------------------------------------------------------------------------------- /svg/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/credit-card.svg -------------------------------------------------------------------------------- /svg/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/crop.svg -------------------------------------------------------------------------------- /svg/dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/dashboard.svg -------------------------------------------------------------------------------- /svg/data-transfer-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/data-transfer-download.svg -------------------------------------------------------------------------------- /svg/data-transfer-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/data-transfer-upload.svg -------------------------------------------------------------------------------- /svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/delete.svg -------------------------------------------------------------------------------- /svg/dial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/dial.svg -------------------------------------------------------------------------------- /svg/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/document.svg -------------------------------------------------------------------------------- /svg/dollar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/dollar.svg -------------------------------------------------------------------------------- /svg/double-quote-sans-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/double-quote-sans-left.svg -------------------------------------------------------------------------------- /svg/double-quote-sans-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/double-quote-sans-right.svg -------------------------------------------------------------------------------- /svg/double-quote-serif-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/double-quote-serif-left.svg -------------------------------------------------------------------------------- /svg/double-quote-serif-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/double-quote-serif-right.svg -------------------------------------------------------------------------------- /svg/droplet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/droplet.svg -------------------------------------------------------------------------------- /svg/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/eject.svg -------------------------------------------------------------------------------- /svg/elevator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/elevator.svg -------------------------------------------------------------------------------- /svg/ellipses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/ellipses.svg -------------------------------------------------------------------------------- /svg/envelope-closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/envelope-closed.svg -------------------------------------------------------------------------------- /svg/envelope-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/envelope-open.svg -------------------------------------------------------------------------------- /svg/euro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/euro.svg -------------------------------------------------------------------------------- /svg/excerpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/excerpt.svg -------------------------------------------------------------------------------- /svg/expand-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/expand-down.svg -------------------------------------------------------------------------------- /svg/expand-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/expand-left.svg -------------------------------------------------------------------------------- /svg/expand-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/expand-right.svg -------------------------------------------------------------------------------- /svg/expand-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/expand-up.svg -------------------------------------------------------------------------------- /svg/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/external-link.svg -------------------------------------------------------------------------------- /svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/eye.svg -------------------------------------------------------------------------------- /svg/eyedropper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/eyedropper.svg -------------------------------------------------------------------------------- /svg/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/file.svg -------------------------------------------------------------------------------- /svg/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/fire.svg -------------------------------------------------------------------------------- /svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/flag.svg -------------------------------------------------------------------------------- /svg/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/flash.svg -------------------------------------------------------------------------------- /svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/folder.svg -------------------------------------------------------------------------------- /svg/fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/fork.svg -------------------------------------------------------------------------------- /svg/fullscreen-enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/fullscreen-enter.svg -------------------------------------------------------------------------------- /svg/fullscreen-exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/fullscreen-exit.svg -------------------------------------------------------------------------------- /svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/globe.svg -------------------------------------------------------------------------------- /svg/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/graph.svg -------------------------------------------------------------------------------- /svg/grid-four-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/grid-four-up.svg -------------------------------------------------------------------------------- /svg/grid-three-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/grid-three-up.svg -------------------------------------------------------------------------------- /svg/grid-two-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/grid-two-up.svg -------------------------------------------------------------------------------- /svg/hard-drive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/hard-drive.svg -------------------------------------------------------------------------------- /svg/header.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/header.svg -------------------------------------------------------------------------------- /svg/headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/headphones.svg -------------------------------------------------------------------------------- /svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/heart.svg -------------------------------------------------------------------------------- /svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/home.svg -------------------------------------------------------------------------------- /svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/image.svg -------------------------------------------------------------------------------- /svg/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/inbox.svg -------------------------------------------------------------------------------- /svg/infinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/infinity.svg -------------------------------------------------------------------------------- /svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/info.svg -------------------------------------------------------------------------------- /svg/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/italic.svg -------------------------------------------------------------------------------- /svg/justify-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/justify-center.svg -------------------------------------------------------------------------------- /svg/justify-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/justify-left.svg -------------------------------------------------------------------------------- /svg/justify-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/justify-right.svg -------------------------------------------------------------------------------- /svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/key.svg -------------------------------------------------------------------------------- /svg/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/laptop.svg -------------------------------------------------------------------------------- /svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/layers.svg -------------------------------------------------------------------------------- /svg/lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/lightbulb.svg -------------------------------------------------------------------------------- /svg/line-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/line-check.svg -------------------------------------------------------------------------------- /svg/line-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/line-error.svg -------------------------------------------------------------------------------- /svg/line-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/line-info.svg -------------------------------------------------------------------------------- /svg/line-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/line-warning.svg -------------------------------------------------------------------------------- /svg/link-broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/link-broken.svg -------------------------------------------------------------------------------- /svg/link-intact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/link-intact.svg -------------------------------------------------------------------------------- /svg/list-rich.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/list-rich.svg -------------------------------------------------------------------------------- /svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/list.svg -------------------------------------------------------------------------------- /svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/location.svg -------------------------------------------------------------------------------- /svg/lock-locked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/lock-locked.svg -------------------------------------------------------------------------------- /svg/lock-unlocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/lock-unlocked.svg -------------------------------------------------------------------------------- /svg/loop-circular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/loop-circular.svg -------------------------------------------------------------------------------- /svg/loop-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/loop-square.svg -------------------------------------------------------------------------------- /svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/loop.svg -------------------------------------------------------------------------------- /svg/magnifying-glass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/magnifying-glass.svg -------------------------------------------------------------------------------- /svg/map-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/map-marker.svg -------------------------------------------------------------------------------- /svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/map.svg -------------------------------------------------------------------------------- /svg/media-pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-pause.svg -------------------------------------------------------------------------------- /svg/media-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-play.svg -------------------------------------------------------------------------------- /svg/media-record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-record.svg -------------------------------------------------------------------------------- /svg/media-skip-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-skip-backward.svg -------------------------------------------------------------------------------- /svg/media-skip-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-skip-forward.svg -------------------------------------------------------------------------------- /svg/media-step-backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-step-backward.svg -------------------------------------------------------------------------------- /svg/media-step-forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-step-forward.svg -------------------------------------------------------------------------------- /svg/media-stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/media-stop.svg -------------------------------------------------------------------------------- /svg/medical-cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/medical-cross.svg -------------------------------------------------------------------------------- /svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/menu.svg -------------------------------------------------------------------------------- /svg/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/microphone.svg -------------------------------------------------------------------------------- /svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/minus.svg -------------------------------------------------------------------------------- /svg/monitor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/monitor.svg -------------------------------------------------------------------------------- /svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/moon.svg -------------------------------------------------------------------------------- /svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/move.svg -------------------------------------------------------------------------------- /svg/musical-note.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/musical-note.svg -------------------------------------------------------------------------------- /svg/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/paperclip.svg -------------------------------------------------------------------------------- /svg/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/pencil.svg -------------------------------------------------------------------------------- /svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/people.svg -------------------------------------------------------------------------------- /svg/person.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/person.svg -------------------------------------------------------------------------------- /svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/phone.svg -------------------------------------------------------------------------------- /svg/pie-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/pie-chart.svg -------------------------------------------------------------------------------- /svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/pin.svg -------------------------------------------------------------------------------- /svg/play-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/play-circle.svg -------------------------------------------------------------------------------- /svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/plus.svg -------------------------------------------------------------------------------- /svg/power-standby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/power-standby.svg -------------------------------------------------------------------------------- /svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/print.svg -------------------------------------------------------------------------------- /svg/project.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/project.svg -------------------------------------------------------------------------------- /svg/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/pulse.svg -------------------------------------------------------------------------------- /svg/puzzle-piece.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/puzzle-piece.svg -------------------------------------------------------------------------------- /svg/question-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/question-mark.svg -------------------------------------------------------------------------------- /svg/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/rain.svg -------------------------------------------------------------------------------- /svg/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/random.svg -------------------------------------------------------------------------------- /svg/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/reload.svg -------------------------------------------------------------------------------- /svg/resize-both.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/resize-both.svg -------------------------------------------------------------------------------- /svg/resize-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/resize-height.svg -------------------------------------------------------------------------------- /svg/resize-width.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/resize-width.svg -------------------------------------------------------------------------------- /svg/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/rotate.svg -------------------------------------------------------------------------------- /svg/rss-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/rss-alt.svg -------------------------------------------------------------------------------- /svg/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/rss.svg -------------------------------------------------------------------------------- /svg/script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/script.svg -------------------------------------------------------------------------------- /svg/share-boxed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/share-boxed.svg -------------------------------------------------------------------------------- /svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/share.svg -------------------------------------------------------------------------------- /svg/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/shield.svg -------------------------------------------------------------------------------- /svg/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/signal.svg -------------------------------------------------------------------------------- /svg/signpost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/signpost.svg -------------------------------------------------------------------------------- /svg/social-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-facebook.svg -------------------------------------------------------------------------------- /svg/social-github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-github.svg -------------------------------------------------------------------------------- /svg/social-googleplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-googleplus.svg -------------------------------------------------------------------------------- /svg/social-instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-instagram.svg -------------------------------------------------------------------------------- /svg/social-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-linkedin.svg -------------------------------------------------------------------------------- /svg/social-pinterest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-pinterest.svg -------------------------------------------------------------------------------- /svg/social-tumblr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-tumblr.svg -------------------------------------------------------------------------------- /svg/social-twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-twitter.svg -------------------------------------------------------------------------------- /svg/social-vimeo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-vimeo.svg -------------------------------------------------------------------------------- /svg/social-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/social-youtube.svg -------------------------------------------------------------------------------- /svg/sort-ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/sort-ascending.svg -------------------------------------------------------------------------------- /svg/sort-descending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/sort-descending.svg -------------------------------------------------------------------------------- /svg/spreadsheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/spreadsheet.svg -------------------------------------------------------------------------------- /svg/star-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/star-empty.svg -------------------------------------------------------------------------------- /svg/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/star-half.svg -------------------------------------------------------------------------------- /svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/star.svg -------------------------------------------------------------------------------- /svg/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/sun.svg -------------------------------------------------------------------------------- /svg/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/tablet.svg -------------------------------------------------------------------------------- /svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/tag.svg -------------------------------------------------------------------------------- /svg/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/tags.svg -------------------------------------------------------------------------------- /svg/target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/target.svg -------------------------------------------------------------------------------- /svg/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/task.svg -------------------------------------------------------------------------------- /svg/terminal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/terminal.svg -------------------------------------------------------------------------------- /svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/text.svg -------------------------------------------------------------------------------- /svg/thumb-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/thumb-down.svg -------------------------------------------------------------------------------- /svg/thumb-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/thumb-up.svg -------------------------------------------------------------------------------- /svg/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/timer.svg -------------------------------------------------------------------------------- /svg/transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/transfer.svg -------------------------------------------------------------------------------- /svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/trash.svg -------------------------------------------------------------------------------- /svg/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/underline.svg -------------------------------------------------------------------------------- /svg/vertical-align-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/vertical-align-bottom.svg -------------------------------------------------------------------------------- /svg/vertical-align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/vertical-align-center.svg -------------------------------------------------------------------------------- /svg/vertical-align-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/vertical-align-top.svg -------------------------------------------------------------------------------- /svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/video.svg -------------------------------------------------------------------------------- /svg/volume-high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/volume-high.svg -------------------------------------------------------------------------------- /svg/volume-low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/volume-low.svg -------------------------------------------------------------------------------- /svg/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/volume-off.svg -------------------------------------------------------------------------------- /svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/warning.svg -------------------------------------------------------------------------------- /svg/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/wifi.svg -------------------------------------------------------------------------------- /svg/wrench.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/wrench.svg -------------------------------------------------------------------------------- /svg/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/x.svg -------------------------------------------------------------------------------- /svg/yen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/yen.svg -------------------------------------------------------------------------------- /svg/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/zoom-in.svg -------------------------------------------------------------------------------- /svg/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUI-Components/svg-iconset/HEAD/svg/zoom-out.svg --------------------------------------------------------------------------------