├── .eslintrc.js ├── .gitignore ├── demo ├── index.html └── styles │ └── demo.css ├── dist ├── icons │ ├── broken-link.json │ ├── buy.json │ ├── caps.json │ ├── chat.json │ ├── cheap.json │ ├── checkbox.json │ ├── clear-filters.json │ ├── cloud.json │ ├── delete.json │ ├── deposit-withdrawal.json │ ├── expand-arrow.json │ ├── expand.json │ ├── expensive.json │ ├── eye.json │ ├── facebook-like.json │ ├── facebook.json │ ├── folder.json │ ├── forward-arrow.json │ ├── heart.json │ ├── hourglass.json │ ├── idea.json │ ├── install.json │ ├── mailbox.json │ ├── menu-arrow.json │ ├── menu-close.json │ ├── menu-close2.json │ ├── menu-minus.json │ ├── mic.json │ ├── mute.json │ ├── no-mic.json │ ├── online.json │ ├── open-closed.json │ ├── open-message.json │ ├── pause.json │ ├── pin.json │ ├── power.json │ ├── refresh-wait.json │ ├── restart.json │ ├── right-left.json │ ├── rotate-phone.json │ ├── search-close.json │ ├── shield.json │ ├── shipped.json │ ├── shopping.json │ ├── smile.json │ ├── sorting-alphabet.json │ ├── sorting-numerical.json │ ├── speech.json │ ├── star.json │ ├── stop.json │ ├── switch.json │ ├── thumb.json │ ├── toggle.json │ ├── trash.json │ ├── twitter.json │ ├── unlock.json │ ├── up-down.json │ ├── volume-1.json │ ├── volume-2.json │ ├── youtube.json │ └── zoom.json ├── js │ └── titanic.min.js ├── maps │ └── titanic.min.js.map └── vendor │ └── bodymovin.min.js ├── docs └── images │ ├── animated-icons-preview.gif │ └── magritte.gif ├── gulpfile.js ├── menu-close.json ├── package.json ├── readme.md ├── src ├── icons │ ├── broken-link.json │ ├── buy.json │ ├── caps.json │ ├── chat.json │ ├── cheap.json │ ├── checkbox.json │ ├── clear-filters.json │ ├── cloud.json │ ├── delete.json │ ├── deposit-withdrawal.json │ ├── expand-arrow.json │ ├── expand.json │ ├── expensive.json │ ├── eye.json │ ├── facebook-like.json │ ├── facebook.json │ ├── folder.json │ ├── forward-arrow.json │ ├── heart.json │ ├── hourglass.json │ ├── idea.json │ ├── install.json │ ├── mailbox.json │ ├── menu-arrow.json │ ├── menu-close.json │ ├── menu-close2.json │ ├── menu-minus.json │ ├── mic.json │ ├── mute.json │ ├── no-mic.json │ ├── online.json │ ├── open-closed.json │ ├── open-message.json │ ├── pause.json │ ├── pin.json │ ├── power.json │ ├── refresh-wait.json │ ├── restart.json │ ├── right-left.json │ ├── rotate-phone.json │ ├── search-close.json │ ├── shield.json │ ├── shipped.json │ ├── shopping.json │ ├── smile.json │ ├── sorting-alphabet.json │ ├── sorting-numerical.json │ ├── speech.json │ ├── star.json │ ├── stop.json │ ├── switch.json │ ├── thumb.json │ ├── toggle.json │ ├── trash.json │ ├── twitter.json │ ├── unlock.json │ ├── up-down.json │ ├── volume-1.json │ ├── volume-2.json │ ├── youtube.json │ └── zoom.json ├── index.html └── js │ ├── titanic-icon.js │ └── titanic.js └── visual-studio-code-snippet.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: 'standard' 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/.gitignore -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/styles/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/demo/styles/demo.css -------------------------------------------------------------------------------- /dist/icons/broken-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/broken-link.json -------------------------------------------------------------------------------- /dist/icons/buy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/buy.json -------------------------------------------------------------------------------- /dist/icons/caps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/caps.json -------------------------------------------------------------------------------- /dist/icons/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/chat.json -------------------------------------------------------------------------------- /dist/icons/cheap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/cheap.json -------------------------------------------------------------------------------- /dist/icons/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/checkbox.json -------------------------------------------------------------------------------- /dist/icons/clear-filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/clear-filters.json -------------------------------------------------------------------------------- /dist/icons/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/cloud.json -------------------------------------------------------------------------------- /dist/icons/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/delete.json -------------------------------------------------------------------------------- /dist/icons/deposit-withdrawal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/deposit-withdrawal.json -------------------------------------------------------------------------------- /dist/icons/expand-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/expand-arrow.json -------------------------------------------------------------------------------- /dist/icons/expand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/expand.json -------------------------------------------------------------------------------- /dist/icons/expensive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/expensive.json -------------------------------------------------------------------------------- /dist/icons/eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/eye.json -------------------------------------------------------------------------------- /dist/icons/facebook-like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/facebook-like.json -------------------------------------------------------------------------------- /dist/icons/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/facebook.json -------------------------------------------------------------------------------- /dist/icons/folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/folder.json -------------------------------------------------------------------------------- /dist/icons/forward-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/forward-arrow.json -------------------------------------------------------------------------------- /dist/icons/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/heart.json -------------------------------------------------------------------------------- /dist/icons/hourglass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/hourglass.json -------------------------------------------------------------------------------- /dist/icons/idea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/idea.json -------------------------------------------------------------------------------- /dist/icons/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/install.json -------------------------------------------------------------------------------- /dist/icons/mailbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/mailbox.json -------------------------------------------------------------------------------- /dist/icons/menu-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/menu-arrow.json -------------------------------------------------------------------------------- /dist/icons/menu-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/menu-close.json -------------------------------------------------------------------------------- /dist/icons/menu-close2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/menu-close2.json -------------------------------------------------------------------------------- /dist/icons/menu-minus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/menu-minus.json -------------------------------------------------------------------------------- /dist/icons/mic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/mic.json -------------------------------------------------------------------------------- /dist/icons/mute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/mute.json -------------------------------------------------------------------------------- /dist/icons/no-mic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/no-mic.json -------------------------------------------------------------------------------- /dist/icons/online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/online.json -------------------------------------------------------------------------------- /dist/icons/open-closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/open-closed.json -------------------------------------------------------------------------------- /dist/icons/open-message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/open-message.json -------------------------------------------------------------------------------- /dist/icons/pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/pause.json -------------------------------------------------------------------------------- /dist/icons/pin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/pin.json -------------------------------------------------------------------------------- /dist/icons/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/power.json -------------------------------------------------------------------------------- /dist/icons/refresh-wait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/refresh-wait.json -------------------------------------------------------------------------------- /dist/icons/restart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/restart.json -------------------------------------------------------------------------------- /dist/icons/right-left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/right-left.json -------------------------------------------------------------------------------- /dist/icons/rotate-phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/rotate-phone.json -------------------------------------------------------------------------------- /dist/icons/search-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/search-close.json -------------------------------------------------------------------------------- /dist/icons/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/shield.json -------------------------------------------------------------------------------- /dist/icons/shipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/shipped.json -------------------------------------------------------------------------------- /dist/icons/shopping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/shopping.json -------------------------------------------------------------------------------- /dist/icons/smile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/smile.json -------------------------------------------------------------------------------- /dist/icons/sorting-alphabet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/sorting-alphabet.json -------------------------------------------------------------------------------- /dist/icons/sorting-numerical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/sorting-numerical.json -------------------------------------------------------------------------------- /dist/icons/speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/speech.json -------------------------------------------------------------------------------- /dist/icons/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/star.json -------------------------------------------------------------------------------- /dist/icons/stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/stop.json -------------------------------------------------------------------------------- /dist/icons/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/switch.json -------------------------------------------------------------------------------- /dist/icons/thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/thumb.json -------------------------------------------------------------------------------- /dist/icons/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/toggle.json -------------------------------------------------------------------------------- /dist/icons/trash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/trash.json -------------------------------------------------------------------------------- /dist/icons/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/twitter.json -------------------------------------------------------------------------------- /dist/icons/unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/unlock.json -------------------------------------------------------------------------------- /dist/icons/up-down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/up-down.json -------------------------------------------------------------------------------- /dist/icons/volume-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/volume-1.json -------------------------------------------------------------------------------- /dist/icons/volume-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/volume-2.json -------------------------------------------------------------------------------- /dist/icons/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/youtube.json -------------------------------------------------------------------------------- /dist/icons/zoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/icons/zoom.json -------------------------------------------------------------------------------- /dist/js/titanic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/js/titanic.min.js -------------------------------------------------------------------------------- /dist/maps/titanic.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/maps/titanic.min.js.map -------------------------------------------------------------------------------- /dist/vendor/bodymovin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/dist/vendor/bodymovin.min.js -------------------------------------------------------------------------------- /docs/images/animated-icons-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/docs/images/animated-icons-preview.gif -------------------------------------------------------------------------------- /docs/images/magritte.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/docs/images/magritte.gif -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/gulpfile.js -------------------------------------------------------------------------------- /menu-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/menu-close.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/readme.md -------------------------------------------------------------------------------- /src/icons/broken-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/broken-link.json -------------------------------------------------------------------------------- /src/icons/buy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/buy.json -------------------------------------------------------------------------------- /src/icons/caps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/caps.json -------------------------------------------------------------------------------- /src/icons/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/chat.json -------------------------------------------------------------------------------- /src/icons/cheap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/cheap.json -------------------------------------------------------------------------------- /src/icons/checkbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/checkbox.json -------------------------------------------------------------------------------- /src/icons/clear-filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/clear-filters.json -------------------------------------------------------------------------------- /src/icons/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/cloud.json -------------------------------------------------------------------------------- /src/icons/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/delete.json -------------------------------------------------------------------------------- /src/icons/deposit-withdrawal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/deposit-withdrawal.json -------------------------------------------------------------------------------- /src/icons/expand-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/expand-arrow.json -------------------------------------------------------------------------------- /src/icons/expand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/expand.json -------------------------------------------------------------------------------- /src/icons/expensive.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/expensive.json -------------------------------------------------------------------------------- /src/icons/eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/eye.json -------------------------------------------------------------------------------- /src/icons/facebook-like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/facebook-like.json -------------------------------------------------------------------------------- /src/icons/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/facebook.json -------------------------------------------------------------------------------- /src/icons/folder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/folder.json -------------------------------------------------------------------------------- /src/icons/forward-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/forward-arrow.json -------------------------------------------------------------------------------- /src/icons/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/heart.json -------------------------------------------------------------------------------- /src/icons/hourglass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/hourglass.json -------------------------------------------------------------------------------- /src/icons/idea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/idea.json -------------------------------------------------------------------------------- /src/icons/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/install.json -------------------------------------------------------------------------------- /src/icons/mailbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/mailbox.json -------------------------------------------------------------------------------- /src/icons/menu-arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/menu-arrow.json -------------------------------------------------------------------------------- /src/icons/menu-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/menu-close.json -------------------------------------------------------------------------------- /src/icons/menu-close2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/menu-close2.json -------------------------------------------------------------------------------- /src/icons/menu-minus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/menu-minus.json -------------------------------------------------------------------------------- /src/icons/mic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/mic.json -------------------------------------------------------------------------------- /src/icons/mute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/mute.json -------------------------------------------------------------------------------- /src/icons/no-mic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/no-mic.json -------------------------------------------------------------------------------- /src/icons/online.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/online.json -------------------------------------------------------------------------------- /src/icons/open-closed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/open-closed.json -------------------------------------------------------------------------------- /src/icons/open-message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/open-message.json -------------------------------------------------------------------------------- /src/icons/pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/pause.json -------------------------------------------------------------------------------- /src/icons/pin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/pin.json -------------------------------------------------------------------------------- /src/icons/power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/power.json -------------------------------------------------------------------------------- /src/icons/refresh-wait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/refresh-wait.json -------------------------------------------------------------------------------- /src/icons/restart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/restart.json -------------------------------------------------------------------------------- /src/icons/right-left.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/right-left.json -------------------------------------------------------------------------------- /src/icons/rotate-phone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/rotate-phone.json -------------------------------------------------------------------------------- /src/icons/search-close.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/search-close.json -------------------------------------------------------------------------------- /src/icons/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/shield.json -------------------------------------------------------------------------------- /src/icons/shipped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/shipped.json -------------------------------------------------------------------------------- /src/icons/shopping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/shopping.json -------------------------------------------------------------------------------- /src/icons/smile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/smile.json -------------------------------------------------------------------------------- /src/icons/sorting-alphabet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/sorting-alphabet.json -------------------------------------------------------------------------------- /src/icons/sorting-numerical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/sorting-numerical.json -------------------------------------------------------------------------------- /src/icons/speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/speech.json -------------------------------------------------------------------------------- /src/icons/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/star.json -------------------------------------------------------------------------------- /src/icons/stop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/stop.json -------------------------------------------------------------------------------- /src/icons/switch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/switch.json -------------------------------------------------------------------------------- /src/icons/thumb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/thumb.json -------------------------------------------------------------------------------- /src/icons/toggle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/toggle.json -------------------------------------------------------------------------------- /src/icons/trash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/trash.json -------------------------------------------------------------------------------- /src/icons/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/twitter.json -------------------------------------------------------------------------------- /src/icons/unlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/unlock.json -------------------------------------------------------------------------------- /src/icons/up-down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/up-down.json -------------------------------------------------------------------------------- /src/icons/volume-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/volume-1.json -------------------------------------------------------------------------------- /src/icons/volume-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/volume-2.json -------------------------------------------------------------------------------- /src/icons/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/youtube.json -------------------------------------------------------------------------------- /src/icons/zoom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/icons/zoom.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/titanic-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/js/titanic-icon.js -------------------------------------------------------------------------------- /src/js/titanic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/src/js/titanic.js -------------------------------------------------------------------------------- /visual-studio-code-snippet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icons8/titanic/HEAD/visual-studio-code-snippet.json --------------------------------------------------------------------------------