barcode barcode, price plug electricity, plug, power hammer hammer, tool, config leaf leaf rattle rattle, baby, toy teepee teepee, hut plane plane, airplane, jet guitar guitar, lira gift gift, present flower flower, plant cycle cycle full-calendar full-calendar shopping-bag shoppin bag location-watch watch, smartwatch misc-arrow arrow, right media-replay replay, reload, refresh misc-simple-check simple check, ok, tick misc-gas gas, pump action-support support action-browse-discover-view browse, discover, view action-cart-shop cart, shop action-delete-trash delete, trash action-download download action-exchage exchage action-flag-alert flag, alert action-back-return-arrow back, return, arrow action-previous previous, back action-top top, up action-forward-arrow forward, arrow action-message message action-search search action-send-fast-paper-plane send, fast, paper, plane action-share-export share, export action-sign-fill sign, fill, contract, document, edit, file, page, paper, pen action-transfer transfer action-upload upload circle circle feature-heart-like-favorite heart, like, favorite feature-lock-secure lock, secure feature-lock lock feature-protection-umbrella protection, umbrella feature-secure-unlock secure, unlock feature-secure-unlocked secure, unlocked feature-smart smart feature-star-bookmark-favorite star, bookmark, favorite location-browser browser location-cloud-weather cloud, weather location-credit-card credit, card location-day day location-document document location-moon forecast, moon, night, weather location-history history location-home home location-inbox inbox location-menu menu location-smartphone smartphone location-tablet tablet location-user-profile user, profile location-wallet wallet location-world-ww world wide web, www media-airplay airplay media-audio-media-music-record-recording-records audio, media, music, record, recording, records media-camera-video camera, video media-mute mute media-play-next-filled play, next, filled media-play-next play, next media-radio radio media-rewind rewind media-forward forward media-volume volume misc-achievement-cup achievement, cup misc-add add misc-alarm-notification-bell alarm, notification, bell misc-archive-copy-document-documents-file-files archive, copy, document, documents, file, files misc-archive-copy-document-documents-file-files2 archive, copy, document, documents, file, files misc-arrow-ccw-back-history-left-repeat-restart-revert arrow, ccw, back, history, left, repeat, restart, revert misc-arrow-cw-forward-media-previous-redo-refresh arrow, cw, forward, media, previous, redo, refresh misc-bag-breafcase-bussiness-document-portfolio bag, breafcase, bussiness, document, portfolio misc-ball-sport ball, sport misc-battery battery misc-binder binder misc-charge charge misc-check check misc-cloude cloude misc-coffee coffee misc-config config misc-cube cube misc-database database misc-empty empty misc-flash-light flash, light misc-idia-lightbulb idia, lightbulb misc-magnet magnet misc-maps-base-coordinates-direction-find-folding-gps maps, base, coordinates, direction, find, folding, gps misc-pen pen misc-print print misc-remove remove misc-status status misc-windows windows misc-monitor monitor misc-stopwatch stopwatch util-access access util-alarm-bell alarm, bell util-alarm alarm util-atm-key-pad atm, key, pad util-bookmark-book bookmark, book util-bookmark bookmark util-box box util-calculator calculator util-calendar calendar util-camera-photo camera, photo util-chat chat util-data-analysis-analytics-bar-business-chart-charts data, analysis, analytics, bar, business, chart, charts util-info info util-learn learn util-link-connect link, connect util-mail-message mail, message util-map-pin-location map, pin, location util-open-mail-empty open, mail, empty util-open-mail open, mail util-config-wheel config, wheel util-settings settings util-sizer sizer util-speech speech util-time-clock time, clock util-time-sensitive time, sensitive web-cake-birthday cake, birthday web-calendar calendar web-dollar dollar web-faster-checkout faster, checkout web-send-and-receive send, and, receive web-woman woman web-no-extra-cost no, extra, cost logo-android-robot android, robot logo-apple apple windows, microsoft windows, microsoft logo-paypal paypal logo-kitsune kitsune, fox - Don't use this! :) misc-twoseven twoseven, percent misc-cards cards, all payment types misc-chat chat, bubbles, text misc-notes notes

SVGs List

Bellow is the list of all the svgs groups and icons in PayPal, you can also toggle circled version as well.

Adding a new SVG icon:

1) Edit the file "/resources/icons/svg-defs.dust"

2) Make sure the SGV icon structured this way:

                
<symbol id="icon-iconGroup-iconName" viewBox="0 0 1024 1024" group="iconGroup">
      <title>iconGroup-iconName</title>
      <keywords>iconKeyword1, iconKeyword2, iconKeyword3, ...</keywords>
      <path class="path1" d="..."></path>
      <path class="path2" d="..."></path>
      <path class="path3" d="..."></path>
      ...
</symbol>
                
            

3) Assign the icon to a group "iconGroup", give it a unique name "iconName", and add keywords that descripes what this icon is about for search convenience "iconKeywords".

4) Add all the pathes elements that draws the icon. Also the best icon size "viewBox" would be 1024.

In Adobe Illustrator, "Save As..." > Save as type: SVG(*.SVG). A pop up will appear. Select "SVG code..." and copy the path(s).

5) Add, Commit, Merge, Test, Push, and have a nice cup of coffee because it is so easy ☺

SVG icon usage:

1) Include this partial into {<pageContent}, preferably at the begining

                
{<pageContent}
    {>"/resources/icons/svg-defs" /}
    ...
{/pageContent}
                
            

2) Include the css file "/resources/css/components/icons-svgs.css"

3) Place this code where you want to use the svg icon

                
<span class="svg circled colorClass">
    <svg class="icon icon-util-access">
        <use xlink:href="#icon-util-access"></use>
    </svg>
</span>
                
            

4) You can add one of the pre-defined colors classes "colorClass" or style your own. Make sure it's at least one level above the svg icon element.