├── .gitignore ├── .npmignore ├── .svgo.yml ├── LICENSE.md ├── README.md ├── iconfont ├── icons.css ├── icons.eot ├── icons.html ├── icons.json ├── icons.svg ├── icons.ttf ├── icons.woff └── icons.woff2 ├── package.json └── svg ├── add.svg ├── archive.svg ├── arrow-down.svg ├── arrow-left-down.svg ├── arrow-left-up.svg ├── arrow-left.svg ├── arrow-right-down.svg ├── arrow-right-up.svg ├── arrow-right.svg ├── arrow-up.svg ├── attachment.svg ├── backspace.svg ├── ban.svg ├── bar-chart-alt.svg ├── bar-chart.svg ├── board.svg ├── bold.svg ├── book.svg ├── bookmark.svg ├── calendar.svg ├── call.svg ├── camera.svg ├── caret-down.svg ├── caret-left.svg ├── caret-right.svg ├── caret-up.svg ├── check.svg ├── chevron-double-down.svg ├── chevron-double-left.svg ├── chevron-double-right.svg ├── chevron-double-up.svg ├── chevron-down.svg ├── chevron-left.svg ├── chevron-right.svg ├── chevron-up.svg ├── circle-add.svg ├── circle-arrow-down.svg ├── circle-arrow-left.svg ├── circle-arrow-right.svg ├── circle-arrow-up.svg ├── circle-check.svg ├── circle-error.svg ├── circle-help.svg ├── circle-information.svg ├── circle-remove.svg ├── circle-warning.svg ├── circle.svg ├── clipboard-check.svg ├── clipboard-list.svg ├── clipboard.svg ├── clock.svg ├── close.svg ├── cloud-download.svg ├── cloud-upload.svg ├── cloud.svg ├── cloudy.svg ├── comment.svg ├── compass.svg ├── computer.svg ├── copy.svg ├── credit-card.svg ├── database.svg ├── delete-alt.svg ├── delete.svg ├── document-add.svg ├── document-check.svg ├── document-download.svg ├── document-empty.svg ├── document-remove.svg ├── document.svg ├── download.svg ├── drag.svg ├── drop.svg ├── edit-alt.svg ├── edit.svg ├── email.svg ├── enter.svg ├── expand.svg ├── export.svg ├── external-link.svg ├── eye-off.svg ├── eye.svg ├── favorite.svg ├── filter-1.svg ├── filter-alt.svg ├── filter.svg ├── flag.svg ├── fog.svg ├── folder-add.svg ├── folder-check.svg ├── folder-download.svg ├── folder-remove.svg ├── folder.svg ├── grid.svg ├── heart.svg ├── home.svg ├── image.svg ├── inbox.svg ├── italic.svg ├── laptop.svg ├── layers.svg ├── layout.svg ├── link-alt.svg ├── link.svg ├── list.svg ├── location.svg ├── lock.svg ├── log-in.svg ├── log-out.svg ├── map.svg ├── megaphone.svg ├── menu.svg ├── message-alt.svg ├── message.svg ├── minimize.svg ├── mobile.svg ├── moon.svg ├── next.svg ├── notification-off.svg ├── notification.svg ├── options-horizontal.svg ├── options-vertical.svg ├── pause.svg ├── pen.svg ├── percentage.svg ├── pin.svg ├── play.svg ├── previous.svg ├── print.svg ├── rain.svg ├── refresh.svg ├── remove.svg ├── reorder-alt.svg ├── reorder.svg ├── repeat.svg ├── save.svg ├── search.svg ├── select.svg ├── send.svg ├── settings.svg ├── share.svg ├── shopping-cart-add.svg ├── shopping-cart.svg ├── shuffle.svg ├── snow.svg ├── snowflake.svg ├── sort.svg ├── speakers.svg ├── stop.svg ├── storm.svg ├── strikethrough.svg ├── sun.svg ├── sunrise-alt.svg ├── sunrise.svg ├── sunset.svg ├── switch.svg ├── table.svg ├── tablet.svg ├── tag.svg ├── temperature.svg ├── text.svg ├── three-rows.svg ├── two-columns.svg ├── two-rows.svg ├── underline.svg ├── undo.svg ├── unlock.svg ├── user-add.svg ├── user-check.svg ├── user-remove.svg ├── user.svg ├── users.svg ├── volume-off.svg ├── volume-up.svg ├── warning.svg ├── webcam.svg ├── wind.svg ├── window.svg ├── zoom-in.svg └── zoom-out.svg /.gitignore: -------------------------------------------------------------------------------- 1 | css 2 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | !css -------------------------------------------------------------------------------- /.svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/.svgo.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/README.md -------------------------------------------------------------------------------- /iconfont/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.css -------------------------------------------------------------------------------- /iconfont/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.eot -------------------------------------------------------------------------------- /iconfont/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.html -------------------------------------------------------------------------------- /iconfont/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.json -------------------------------------------------------------------------------- /iconfont/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.svg -------------------------------------------------------------------------------- /iconfont/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.ttf -------------------------------------------------------------------------------- /iconfont/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.woff -------------------------------------------------------------------------------- /iconfont/icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/iconfont/icons.woff2 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/package.json -------------------------------------------------------------------------------- /svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/add.svg -------------------------------------------------------------------------------- /svg/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/archive.svg -------------------------------------------------------------------------------- /svg/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-down.svg -------------------------------------------------------------------------------- /svg/arrow-left-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-left-down.svg -------------------------------------------------------------------------------- /svg/arrow-left-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-left-up.svg -------------------------------------------------------------------------------- /svg/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-left.svg -------------------------------------------------------------------------------- /svg/arrow-right-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-right-down.svg -------------------------------------------------------------------------------- /svg/arrow-right-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-right-up.svg -------------------------------------------------------------------------------- /svg/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-right.svg -------------------------------------------------------------------------------- /svg/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/arrow-up.svg -------------------------------------------------------------------------------- /svg/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/attachment.svg -------------------------------------------------------------------------------- /svg/backspace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/backspace.svg -------------------------------------------------------------------------------- /svg/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/ban.svg -------------------------------------------------------------------------------- /svg/bar-chart-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/bar-chart-alt.svg -------------------------------------------------------------------------------- /svg/bar-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/bar-chart.svg -------------------------------------------------------------------------------- /svg/board.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/board.svg -------------------------------------------------------------------------------- /svg/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/bold.svg -------------------------------------------------------------------------------- /svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/book.svg -------------------------------------------------------------------------------- /svg/bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/bookmark.svg -------------------------------------------------------------------------------- /svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/calendar.svg -------------------------------------------------------------------------------- /svg/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/call.svg -------------------------------------------------------------------------------- /svg/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/camera.svg -------------------------------------------------------------------------------- /svg/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/caret-down.svg -------------------------------------------------------------------------------- /svg/caret-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/caret-left.svg -------------------------------------------------------------------------------- /svg/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/caret-right.svg -------------------------------------------------------------------------------- /svg/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/caret-up.svg -------------------------------------------------------------------------------- /svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/check.svg -------------------------------------------------------------------------------- /svg/chevron-double-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-double-down.svg -------------------------------------------------------------------------------- /svg/chevron-double-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-double-left.svg -------------------------------------------------------------------------------- /svg/chevron-double-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-double-right.svg -------------------------------------------------------------------------------- /svg/chevron-double-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-double-up.svg -------------------------------------------------------------------------------- /svg/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-down.svg -------------------------------------------------------------------------------- /svg/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-left.svg -------------------------------------------------------------------------------- /svg/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-right.svg -------------------------------------------------------------------------------- /svg/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/chevron-up.svg -------------------------------------------------------------------------------- /svg/circle-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-add.svg -------------------------------------------------------------------------------- /svg/circle-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-arrow-down.svg -------------------------------------------------------------------------------- /svg/circle-arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-arrow-left.svg -------------------------------------------------------------------------------- /svg/circle-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-arrow-right.svg -------------------------------------------------------------------------------- /svg/circle-arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-arrow-up.svg -------------------------------------------------------------------------------- /svg/circle-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-check.svg -------------------------------------------------------------------------------- /svg/circle-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-error.svg -------------------------------------------------------------------------------- /svg/circle-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-help.svg -------------------------------------------------------------------------------- /svg/circle-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-information.svg -------------------------------------------------------------------------------- /svg/circle-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-remove.svg -------------------------------------------------------------------------------- /svg/circle-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle-warning.svg -------------------------------------------------------------------------------- /svg/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/circle.svg -------------------------------------------------------------------------------- /svg/clipboard-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/clipboard-check.svg -------------------------------------------------------------------------------- /svg/clipboard-list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/clipboard-list.svg -------------------------------------------------------------------------------- /svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/clipboard.svg -------------------------------------------------------------------------------- /svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/clock.svg -------------------------------------------------------------------------------- /svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/close.svg -------------------------------------------------------------------------------- /svg/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/cloud-download.svg -------------------------------------------------------------------------------- /svg/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/cloud-upload.svg -------------------------------------------------------------------------------- /svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/cloud.svg -------------------------------------------------------------------------------- /svg/cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/cloudy.svg -------------------------------------------------------------------------------- /svg/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/comment.svg -------------------------------------------------------------------------------- /svg/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/compass.svg -------------------------------------------------------------------------------- /svg/computer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/computer.svg -------------------------------------------------------------------------------- /svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/copy.svg -------------------------------------------------------------------------------- /svg/credit-card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/credit-card.svg -------------------------------------------------------------------------------- /svg/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/database.svg -------------------------------------------------------------------------------- /svg/delete-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/delete-alt.svg -------------------------------------------------------------------------------- /svg/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/delete.svg -------------------------------------------------------------------------------- /svg/document-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document-add.svg -------------------------------------------------------------------------------- /svg/document-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document-check.svg -------------------------------------------------------------------------------- /svg/document-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document-download.svg -------------------------------------------------------------------------------- /svg/document-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document-empty.svg -------------------------------------------------------------------------------- /svg/document-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document-remove.svg -------------------------------------------------------------------------------- /svg/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/document.svg -------------------------------------------------------------------------------- /svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/download.svg -------------------------------------------------------------------------------- /svg/drag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/drag.svg -------------------------------------------------------------------------------- /svg/drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/drop.svg -------------------------------------------------------------------------------- /svg/edit-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/edit-alt.svg -------------------------------------------------------------------------------- /svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/edit.svg -------------------------------------------------------------------------------- /svg/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/email.svg -------------------------------------------------------------------------------- /svg/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/enter.svg -------------------------------------------------------------------------------- /svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/expand.svg -------------------------------------------------------------------------------- /svg/export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/export.svg -------------------------------------------------------------------------------- /svg/external-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/external-link.svg -------------------------------------------------------------------------------- /svg/eye-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/eye-off.svg -------------------------------------------------------------------------------- /svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/eye.svg -------------------------------------------------------------------------------- /svg/favorite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/favorite.svg -------------------------------------------------------------------------------- /svg/filter-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/filter-1.svg -------------------------------------------------------------------------------- /svg/filter-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/filter-alt.svg -------------------------------------------------------------------------------- /svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/filter.svg -------------------------------------------------------------------------------- /svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/flag.svg -------------------------------------------------------------------------------- /svg/fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/fog.svg -------------------------------------------------------------------------------- /svg/folder-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/folder-add.svg -------------------------------------------------------------------------------- /svg/folder-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/folder-check.svg -------------------------------------------------------------------------------- /svg/folder-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/folder-download.svg -------------------------------------------------------------------------------- /svg/folder-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/folder-remove.svg -------------------------------------------------------------------------------- /svg/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/folder.svg -------------------------------------------------------------------------------- /svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/grid.svg -------------------------------------------------------------------------------- /svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/heart.svg -------------------------------------------------------------------------------- /svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/home.svg -------------------------------------------------------------------------------- /svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/image.svg -------------------------------------------------------------------------------- /svg/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/inbox.svg -------------------------------------------------------------------------------- /svg/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/italic.svg -------------------------------------------------------------------------------- /svg/laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/laptop.svg -------------------------------------------------------------------------------- /svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/layers.svg -------------------------------------------------------------------------------- /svg/layout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/layout.svg -------------------------------------------------------------------------------- /svg/link-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/link-alt.svg -------------------------------------------------------------------------------- /svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/link.svg -------------------------------------------------------------------------------- /svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/list.svg -------------------------------------------------------------------------------- /svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/location.svg -------------------------------------------------------------------------------- /svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/lock.svg -------------------------------------------------------------------------------- /svg/log-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/log-in.svg -------------------------------------------------------------------------------- /svg/log-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/log-out.svg -------------------------------------------------------------------------------- /svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/map.svg -------------------------------------------------------------------------------- /svg/megaphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/megaphone.svg -------------------------------------------------------------------------------- /svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/menu.svg -------------------------------------------------------------------------------- /svg/message-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/message-alt.svg -------------------------------------------------------------------------------- /svg/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/message.svg -------------------------------------------------------------------------------- /svg/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/minimize.svg -------------------------------------------------------------------------------- /svg/mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/mobile.svg -------------------------------------------------------------------------------- /svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/moon.svg -------------------------------------------------------------------------------- /svg/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/next.svg -------------------------------------------------------------------------------- /svg/notification-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/notification-off.svg -------------------------------------------------------------------------------- /svg/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/notification.svg -------------------------------------------------------------------------------- /svg/options-horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/options-horizontal.svg -------------------------------------------------------------------------------- /svg/options-vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/options-vertical.svg -------------------------------------------------------------------------------- /svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/pause.svg -------------------------------------------------------------------------------- /svg/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/pen.svg -------------------------------------------------------------------------------- /svg/percentage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/percentage.svg -------------------------------------------------------------------------------- /svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/pin.svg -------------------------------------------------------------------------------- /svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/play.svg -------------------------------------------------------------------------------- /svg/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/previous.svg -------------------------------------------------------------------------------- /svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/print.svg -------------------------------------------------------------------------------- /svg/rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/rain.svg -------------------------------------------------------------------------------- /svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/refresh.svg -------------------------------------------------------------------------------- /svg/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/remove.svg -------------------------------------------------------------------------------- /svg/reorder-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/reorder-alt.svg -------------------------------------------------------------------------------- /svg/reorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/reorder.svg -------------------------------------------------------------------------------- /svg/repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/repeat.svg -------------------------------------------------------------------------------- /svg/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/save.svg -------------------------------------------------------------------------------- /svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/search.svg -------------------------------------------------------------------------------- /svg/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/select.svg -------------------------------------------------------------------------------- /svg/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/send.svg -------------------------------------------------------------------------------- /svg/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/settings.svg -------------------------------------------------------------------------------- /svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/share.svg -------------------------------------------------------------------------------- /svg/shopping-cart-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/shopping-cart-add.svg -------------------------------------------------------------------------------- /svg/shopping-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/shopping-cart.svg -------------------------------------------------------------------------------- /svg/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/shuffle.svg -------------------------------------------------------------------------------- /svg/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/snow.svg -------------------------------------------------------------------------------- /svg/snowflake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/snowflake.svg -------------------------------------------------------------------------------- /svg/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/sort.svg -------------------------------------------------------------------------------- /svg/speakers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/speakers.svg -------------------------------------------------------------------------------- /svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/stop.svg -------------------------------------------------------------------------------- /svg/storm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/storm.svg -------------------------------------------------------------------------------- /svg/strikethrough.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/strikethrough.svg -------------------------------------------------------------------------------- /svg/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/sun.svg -------------------------------------------------------------------------------- /svg/sunrise-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/sunrise-alt.svg -------------------------------------------------------------------------------- /svg/sunrise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/sunrise.svg -------------------------------------------------------------------------------- /svg/sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/sunset.svg -------------------------------------------------------------------------------- /svg/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/switch.svg -------------------------------------------------------------------------------- /svg/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/table.svg -------------------------------------------------------------------------------- /svg/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/tablet.svg -------------------------------------------------------------------------------- /svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/tag.svg -------------------------------------------------------------------------------- /svg/temperature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/temperature.svg -------------------------------------------------------------------------------- /svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/text.svg -------------------------------------------------------------------------------- /svg/three-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/three-rows.svg -------------------------------------------------------------------------------- /svg/two-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/two-columns.svg -------------------------------------------------------------------------------- /svg/two-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/two-rows.svg -------------------------------------------------------------------------------- /svg/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/underline.svg -------------------------------------------------------------------------------- /svg/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/undo.svg -------------------------------------------------------------------------------- /svg/unlock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/unlock.svg -------------------------------------------------------------------------------- /svg/user-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/user-add.svg -------------------------------------------------------------------------------- /svg/user-check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/user-check.svg -------------------------------------------------------------------------------- /svg/user-remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/user-remove.svg -------------------------------------------------------------------------------- /svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/user.svg -------------------------------------------------------------------------------- /svg/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/users.svg -------------------------------------------------------------------------------- /svg/volume-off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/volume-off.svg -------------------------------------------------------------------------------- /svg/volume-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/volume-up.svg -------------------------------------------------------------------------------- /svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/warning.svg -------------------------------------------------------------------------------- /svg/webcam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/webcam.svg -------------------------------------------------------------------------------- /svg/wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/wind.svg -------------------------------------------------------------------------------- /svg/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/window.svg -------------------------------------------------------------------------------- /svg/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/zoom-in.svg -------------------------------------------------------------------------------- /svg/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono-company/mono-icons/HEAD/svg/zoom-out.svg --------------------------------------------------------------------------------