├── .buildkite ├── pipeline.yml ├── publish-pod.sh └── validate_swift_package ├── .bundle └── config ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .swift-version ├── CHANGELOG.md ├── Demo ├── GridiconsDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── GridiconsDemo.xcscheme └── GridiconsDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── Gemfile ├── Gemfile.lock ├── Gridicons.podspec ├── Gridicons.stencil ├── LICENSE.md ├── Package.swift ├── README.md ├── Rakefile ├── Sources └── Gridicons │ ├── Gridicons.swift │ ├── GridiconsGenerated.swift │ └── Resources │ └── Gridicons.xcassets │ ├── Contents.json │ ├── add-image.imageset │ ├── Contents.json │ └── add-image.pdf │ ├── add-outline.imageset │ ├── Contents.json │ └── add-outline.pdf │ ├── add.imageset │ ├── Contents.json │ └── add.pdf │ ├── align-center.imageset │ ├── Contents.json │ └── align-center.pdf │ ├── align-image-center.imageset │ ├── Contents.json │ └── align-image-center.pdf │ ├── align-image-left.imageset │ ├── Contents.json │ └── align-image-left.pdf │ ├── align-image-none.imageset │ ├── Contents.json │ └── align-image-none.pdf │ ├── align-image-right.imageset │ ├── Contents.json │ └── align-image-right.pdf │ ├── align-justify.imageset │ ├── Contents.json │ └── align-justify.pdf │ ├── align-left.imageset │ ├── Contents.json │ └── align-left.pdf │ ├── align-right.imageset │ ├── Contents.json │ └── align-right.pdf │ ├── arrow-down.imageset │ ├── Contents.json │ └── arrow-down.pdf │ ├── arrow-left.imageset │ ├── Contents.json │ └── arrow-left.pdf │ ├── arrow-right.imageset │ ├── Contents.json │ └── arrow-right.pdf │ ├── arrow-up.imageset │ ├── Contents.json │ └── arrow-up.pdf │ ├── aside.imageset │ ├── Contents.json │ └── aside.pdf │ ├── attachment.imageset │ ├── Contents.json │ └── attachment.pdf │ ├── audio.imageset │ ├── Contents.json │ └── audio.pdf │ ├── bell.imageset │ ├── Contents.json │ └── bell.pdf │ ├── block.imageset │ ├── Contents.json │ └── block.pdf │ ├── bold.imageset │ ├── Contents.json │ └── bold.pdf │ ├── book.imageset │ ├── Contents.json │ └── book.pdf │ ├── bookmark-outline.imageset │ ├── Contents.json │ └── bookmark-outline.pdf │ ├── bookmark.imageset │ ├── Contents.json │ └── bookmark.pdf │ ├── briefcase.imageset │ ├── Contents.json │ └── briefcase.pdf │ ├── bug.imageset │ ├── Contents.json │ └── bug.pdf │ ├── calendar.imageset │ ├── Contents.json │ └── calendar.pdf │ ├── camera.imageset │ ├── Contents.json │ └── camera.pdf │ ├── caption.imageset │ ├── Contents.json │ └── caption.pdf │ ├── cart.imageset │ ├── Contents.json │ └── cart.pdf │ ├── chat.imageset │ ├── Contents.json │ └── chat.pdf │ ├── checkmark-circle.imageset │ ├── Contents.json │ └── checkmark-circle.pdf │ ├── checkmark.imageset │ ├── Contents.json │ └── checkmark.pdf │ ├── chevron-down.imageset │ ├── Contents.json │ └── chevron-down.pdf │ ├── chevron-left.imageset │ ├── Contents.json │ └── chevron-left.pdf │ ├── chevron-right.imageset │ ├── Contents.json │ └── chevron-right.pdf │ ├── chevron-up.imageset │ ├── Contents.json │ └── chevron-up.pdf │ ├── clear-formatting.imageset │ ├── Contents.json │ └── clear-formatting.pdf │ ├── clipboard.imageset │ ├── Contents.json │ └── clipboard.pdf │ ├── cloud-download.imageset │ ├── Contents.json │ └── cloud-download.pdf │ ├── cloud-outline.imageset │ ├── Contents.json │ └── cloud-outline.pdf │ ├── cloud-upload.imageset │ ├── Contents.json │ └── cloud-upload.pdf │ ├── cloud.imageset │ ├── Contents.json │ └── cloud.pdf │ ├── code.imageset │ ├── Contents.json │ └── code.pdf │ ├── cog.imageset │ ├── Contents.json │ └── cog.pdf │ ├── comment.imageset │ ├── Contents.json │ └── comment.pdf │ ├── computer.imageset │ ├── Contents.json │ └── computer.pdf │ ├── coupon.imageset │ ├── Contents.json │ └── coupon.pdf │ ├── create.imageset │ ├── Contents.json │ └── create.pdf │ ├── credit-card.imageset │ ├── Contents.json │ └── credit-card.pdf │ ├── crop.imageset │ ├── Contents.json │ └── crop.pdf │ ├── cross-circle.imageset │ ├── Contents.json │ └── cross-circle.pdf │ ├── cross-small.imageset │ ├── Contents.json │ └── cross-small.pdf │ ├── cross.imageset │ ├── Contents.json │ └── cross.pdf │ ├── custom-post-type.imageset │ ├── Contents.json │ └── custom-post-type.pdf │ ├── customize.imageset │ ├── Contents.json │ └── customize.pdf │ ├── domains.imageset │ ├── Contents.json │ └── domains.pdf │ ├── dropdown.imageset │ ├── Contents.json │ └── dropdown.pdf │ ├── ellipsis-circle.imageset │ ├── Contents.json │ └── ellipsis-circle.pdf │ ├── ellipsis.imageset │ ├── Contents.json │ └── ellipsis.pdf │ ├── external.imageset │ ├── Contents.json │ └── external.pdf │ ├── filter.imageset │ ├── Contents.json │ └── filter.pdf │ ├── flag.imageset │ ├── Contents.json │ └── flag.pdf │ ├── flip-horizontal.imageset │ ├── Contents.json │ └── flip-horizontal.pdf │ ├── flip-vertical.imageset │ ├── Contents.json │ └── flip-vertical.pdf │ ├── folder-multiple.imageset │ ├── Contents.json │ └── folder-multiple.pdf │ ├── folder.imageset │ ├── Contents.json │ └── folder.pdf │ ├── fullscreen-exit.imageset │ ├── Contents.json │ └── fullscreen-exit.pdf │ ├── fullscreen.imageset │ ├── Contents.json │ └── fullscreen.pdf │ ├── gift.imageset │ ├── Contents.json │ └── gift.pdf │ ├── globe.imageset │ ├── Contents.json │ └── globe.pdf │ ├── grid.imageset │ ├── Contents.json │ └── grid.pdf │ ├── heading-h1.imageset │ ├── Contents.json │ └── heading-h1.pdf │ ├── heading-h2.imageset │ ├── Contents.json │ └── heading-h2.pdf │ ├── heading-h3.imageset │ ├── Contents.json │ └── heading-h3.pdf │ ├── heading-h4.imageset │ ├── Contents.json │ └── heading-h4.pdf │ ├── heading-h5.imageset │ ├── Contents.json │ └── heading-h5.pdf │ ├── heading-h6.imageset │ ├── Contents.json │ └── heading-h6.pdf │ ├── heading.imageset │ ├── Contents.json │ └── heading.pdf │ ├── heart-outline.imageset │ ├── Contents.json │ └── heart-outline.pdf │ ├── heart.imageset │ ├── Contents.json │ └── heart.pdf │ ├── help-outline.imageset │ ├── Contents.json │ └── help-outline.pdf │ ├── help.imageset │ ├── Contents.json │ └── help.pdf │ ├── history.imageset │ ├── Contents.json │ └── history.pdf │ ├── house.imageset │ ├── Contents.json │ └── house.pdf │ ├── image-multiple.imageset │ ├── Contents.json │ └── image-multiple.pdf │ ├── image-remove.imageset │ ├── Contents.json │ └── image-remove.pdf │ ├── image.imageset │ ├── Contents.json │ └── image.pdf │ ├── indent-left.imageset │ ├── Contents.json │ └── indent-left.pdf │ ├── indent-right.imageset │ ├── Contents.json │ └── indent-right.pdf │ ├── info-outline.imageset │ ├── Contents.json │ └── info-outline.pdf │ ├── info.imageset │ ├── Contents.json │ └── info.pdf │ ├── ink.imageset │ ├── Contents.json │ └── ink.pdf │ ├── institution.imageset │ ├── Contents.json │ └── institution.pdf │ ├── italic.imageset │ ├── Contents.json │ └── italic.pdf │ ├── layout-blocks.imageset │ ├── Contents.json │ └── layout-blocks.pdf │ ├── layout.imageset │ ├── Contents.json │ └── layout.pdf │ ├── line-graph.imageset │ ├── Contents.json │ └── line-graph.pdf │ ├── link-break.imageset │ ├── Contents.json │ └── link-break.pdf │ ├── link.imageset │ ├── Contents.json │ └── link.pdf │ ├── list-checkmark.imageset │ ├── Contents.json │ └── list-checkmark.pdf │ ├── list-ordered-rtl.imageset │ ├── Contents.json │ └── list-ordered-rtl.pdf │ ├── list-ordered.imageset │ ├── Contents.json │ └── list-ordered.pdf │ ├── list-unordered.imageset │ ├── Contents.json │ └── list-unordered.pdf │ ├── location.imageset │ ├── Contents.json │ └── location.pdf │ ├── lock.imageset │ ├── Contents.json │ └── lock.pdf │ ├── mail.imageset │ ├── Contents.json │ └── mail.pdf │ ├── mention.imageset │ ├── Contents.json │ └── mention.pdf │ ├── menu.imageset │ ├── Contents.json │ └── menu.pdf │ ├── menus.imageset │ ├── Contents.json │ └── menus.pdf │ ├── microphone.imageset │ ├── Contents.json │ └── microphone.pdf │ ├── minus-small.imageset │ ├── Contents.json │ └── minus-small.pdf │ ├── minus.imageset │ ├── Contents.json │ └── minus.pdf │ ├── money.imageset │ ├── Contents.json │ └── money.pdf │ ├── multiple-users.imageset │ ├── Contents.json │ └── multiple-users.pdf │ ├── my-sites-horizon.imageset │ ├── Contents.json │ └── my-sites-horizon.pdf │ ├── my-sites.imageset │ ├── Contents.json │ └── my-sites.pdf │ ├── nametag.imageset │ ├── Contents.json │ └── nametag.pdf │ ├── next-page.imageset │ ├── Contents.json │ └── next-page.pdf │ ├── not-visible.imageset │ ├── Contents.json │ └── not-visible.pdf │ ├── notice-outline.imageset │ ├── Contents.json │ └── notice-outline.pdf │ ├── notice.imageset │ ├── Contents.json │ └── notice.pdf │ ├── offline.imageset │ ├── Contents.json │ └── offline.pdf │ ├── p2.imageset │ ├── Contents.json │ └── p2-icon.pdf │ ├── pages.imageset │ ├── Contents.json │ └── pages.pdf │ ├── pause.imageset │ ├── Contents.json │ └── pause.pdf │ ├── pencil.imageset │ ├── Contents.json │ └── pencil.pdf │ ├── phone.imageset │ ├── Contents.json │ └── phone.pdf │ ├── pin.imageset │ ├── Contents.json │ └── pin.pdf │ ├── plans.imageset │ ├── Contents.json │ └── plans.pdf │ ├── play.imageset │ ├── Contents.json │ └── play.pdf │ ├── plugins.imageset │ ├── Contents.json │ └── plugins.pdf │ ├── plus-small.imageset │ ├── Contents.json │ └── plus-small.pdf │ ├── plus.imageset │ ├── Contents.json │ └── plus.pdf │ ├── popout.imageset │ ├── Contents.json │ └── popout.pdf │ ├── posts.imageset │ ├── Contents.json │ └── posts.pdf │ ├── print.imageset │ ├── Contents.json │ └── print.pdf │ ├── product-downloadable.imageset │ ├── Contents.json │ └── product-downloadable.pdf │ ├── product-external.imageset │ ├── Contents.json │ └── product-external.pdf │ ├── product-virtual.imageset │ ├── Contents.json │ └── product-virtual.pdf │ ├── product.imageset │ ├── Contents.json │ └── product.pdf │ ├── quote.imageset │ ├── Contents.json │ └── quote.pdf │ ├── read-more.imageset │ ├── Contents.json │ └── read-more.pdf │ ├── reader-follow-conversation.imageset │ ├── Contents.json │ └── reader-follow-conversation.pdf │ ├── reader-follow.imageset │ ├── Contents.json │ └── reader-follow.pdf │ ├── reader-following-conversation.imageset │ ├── Contents.json │ └── reader-following-conversation.pdf │ ├── reader-following.imageset │ ├── Contents.json │ └── reader-following.pdf │ ├── reader.imageset │ ├── Contents.json │ └── reader.pdf │ ├── reblog.imageset │ ├── Contents.json │ └── reblog.pdf │ ├── redo.imageset │ ├── Contents.json │ └── redo.pdf │ ├── refresh.imageset │ ├── Contents.json │ └── refresh.pdf │ ├── refund.imageset │ ├── Contents.json │ └── refund.pdf │ ├── reply.imageset │ ├── Contents.json │ └── reply.pdf │ ├── resize.imageset │ ├── Contents.json │ └── resize.pdf │ ├── rotate.imageset │ ├── Contents.json │ └── rotate.pdf │ ├── scheduled.imageset │ ├── Contents.json │ └── scheduled.pdf │ ├── search.imageset │ ├── Contents.json │ └── search.pdf │ ├── share-computer.imageset │ ├── Contents.json │ └── share-computer.pdf │ ├── share-ios.imageset │ ├── Contents.json │ └── share-ios.pdf │ ├── share.imageset │ ├── Contents.json │ └── share.pdf │ ├── shipping.imageset │ ├── Contents.json │ └── shipping.pdf │ ├── shutter.imageset │ ├── Contents.json │ └── shutter.pdf │ ├── sign-out.imageset │ ├── Contents.json │ └── sign-out.pdf │ ├── site.imageset │ ├── Contents.json │ └── site.pdf │ ├── spam.imageset │ ├── Contents.json │ └── spam.pdf │ ├── speaker.imageset │ ├── Contents.json │ └── speaker.pdf │ ├── special-character.imageset │ ├── Contents.json │ └── special-character.pdf │ ├── star-outline.imageset │ ├── Contents.json │ └── star-outline.pdf │ ├── star.imageset │ ├── Contents.json │ └── star.pdf │ ├── stats-alt.imageset │ ├── Contents.json │ └── stats-alt.pdf │ ├── stats-down-alt.imageset │ ├── Contents.json │ └── stats-down-alt.pdf │ ├── stats-down.imageset │ ├── Contents.json │ └── stats-down.pdf │ ├── stats-up-alt.imageset │ ├── Contents.json │ └── stats-up-alt.pdf │ ├── stats-up.imageset │ ├── Contents.json │ └── stats-up.pdf │ ├── stats.imageset │ ├── Contents.json │ └── stats.pdf │ ├── status.imageset │ ├── Contents.json │ └── status.pdf │ ├── story.imageset │ ├── Contents.json │ └── story.pdf │ ├── strikethrough.imageset │ ├── Contents.json │ └── strikethrough.pdf │ ├── sync.imageset │ ├── Contents.json │ └── sync.pdf │ ├── tablet.imageset │ ├── Contents.json │ └── tablet.pdf │ ├── tag.imageset │ ├── Contents.json │ └── tag.pdf │ ├── text-color.imageset │ ├── Contents.json │ └── text-color.pdf │ ├── themes.imageset │ ├── Contents.json │ └── themes.pdf │ ├── thumbs-up.imageset │ ├── Contents.json │ └── thumbs-up.pdf │ ├── time.imageset │ ├── Contents.json │ └── time.pdf │ ├── trash.imageset │ ├── Contents.json │ └── trash.pdf │ ├── trophy.imageset │ ├── Contents.json │ └── trophy.pdf │ ├── types.imageset │ ├── Contents.json │ └── types.pdf │ ├── underline.imageset │ ├── Contents.json │ └── underline.pdf │ ├── undo.imageset │ ├── Contents.json │ └── undo.pdf │ ├── user-add.imageset │ ├── Contents.json │ └── user-add.pdf │ ├── user-circle.imageset │ ├── Contents.json │ └── user-circle.pdf │ ├── user.imageset │ ├── Contents.json │ └── user.pdf │ ├── video-camera.imageset │ ├── Contents.json │ └── video-camera.pdf │ ├── video-remove.imageset │ ├── Contents.json │ └── video-remove.pdf │ ├── video.imageset │ ├── Contents.json │ └── video.pdf │ ├── visible.imageset │ ├── Contents.json │ └── visible.pdf │ ├── zoom-in.imageset │ ├── Contents.json │ └── zoom-in.pdf │ └── zoom-out.imageset │ ├── Contents.json │ └── zoom-out.pdf ├── Tests └── GridiconsTests │ └── GridiconsTests.swift └── fastlane └── Fastfile /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- 1 | # yaml-language-server: $schema=https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json 2 | --- 3 | 4 | agents: 5 | queue: mac 6 | 7 | env: 8 | IMAGE_ID: xcode-16.4 9 | 10 | common_params: 11 | plugins: &common_plugins 12 | - automattic/a8c-ci-toolkit#2.15.0 13 | 14 | # This is the default pipeline – it will build and test the app 15 | steps: 16 | ######################## 17 | # Validate Swift Package 18 | ######################## 19 | - label: "🔬 Validating Swift Package" 20 | key: "test" 21 | command: ".buildkite/validate_swift_package" 22 | plugins: *common_plugins 23 | 24 | ################# 25 | # Validate Podspec 26 | ################# 27 | - label: "🔬 Validating Podspec" 28 | key: "validate" 29 | command: "validate_podspec" 30 | plugins: *common_plugins 31 | 32 | ################# 33 | # Lint 34 | ################# 35 | - label: "🧹 Lint" 36 | key: "lint" 37 | command: "lint_pod" 38 | plugins: *common_plugins 39 | 40 | ################# 41 | # Publish the Podspec (if we're building a tag) 42 | ################# 43 | - label: "⬆️ Publish Podspec" 44 | key: "publish" 45 | command: .buildkite/publish-pod.sh 46 | plugins: *common_plugins 47 | depends_on: 48 | - "test" 49 | - "validate" 50 | - "lint" 51 | if: build.tag != null 52 | -------------------------------------------------------------------------------- /.buildkite/publish-pod.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eu 2 | 3 | PODSPEC_PATH="Gridicons.podspec" 4 | SLACK_WEBHOOK=$PODS_SLACK_WEBHOOK 5 | 6 | echo "--- :rubygems: Setting up Gems" 7 | install_gems 8 | 9 | echo "--- :cocoapods: Publishing Pod to CocoaPods CDN" 10 | publish_pod $PODSPEC_PATH 11 | 12 | echo "--- :slack: Notifying Slack" 13 | slack_notify_pod_published $PODSPEC_PATH "$SLACK_WEBHOOK" 14 | -------------------------------------------------------------------------------- /.buildkite/validate_swift_package: -------------------------------------------------------------------------------- 1 | #!/bin/bash -eu 2 | # 3 | # Any arguments passed to this script will be passed through to `fastlane`. 4 | # If no argument is passed, the `test` lane will be called by default. 5 | 6 | echo "--- :rubygems: Setting up Gems" 7 | install_gems 8 | 9 | echo "--- :test_tube: Building and testing the Swift Package" 10 | 11 | bundle exec fastlane "${@:-test}" 12 | -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | - [ ] I have considered if this change warrants release notes and have added them to the appropriate section in the `CHANGELOG.md` if necessary. 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Xcode 4 | 5 | ## Build generated 6 | .build 7 | build/ 8 | DerivedData/ 9 | 10 | ## Various settings 11 | *.pbxuser 12 | !default.pbxuser 13 | *.mode1v3 14 | !default.mode1v3 15 | *.mode2v3 16 | !default.mode2v3 17 | *.perspectivev3 18 | !default.perspectivev3 19 | xcuserdata/ 20 | 21 | ## Other 22 | *.moved-aside 23 | *.xcuserstate 24 | Pods/ 25 | vendor/ 26 | 27 | ## Obj-C/Swift specific 28 | *.hmap 29 | *.ipa 30 | 31 | ## Playgrounds 32 | timeline.xctimeline 33 | playground.xcworkspace 34 | 35 | # Fastlane 36 | fastlane/report.xml 37 | fastlane/test_output 38 | fastlane/README.md 39 | 40 | .swiftpm/ 41 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | # Opt in to new cops by default 2 | AllCops: 3 | NewCops: enable 4 | 5 | # Allow the Podspec filename to match the project 6 | Naming/FileName: 7 | Exclude: 8 | - 'Gridicons.podspec' 9 | 10 | # Override the maximum block length (some pods have long definitions) 11 | Metrics/BlockLength: 12 | Max: 256 13 | 14 | # Override the maximum line length 15 | Layout/LineLength: 16 | Max: 160 17 | 18 | require: rubocop-rake 19 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | The format of this document is inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and the project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 4 | 5 | 32 | 33 | ## Unreleased 34 | 35 | ### Breaking Changes 36 | 37 | _None._ 38 | 39 | ### New Features 40 | 41 | * Add Swift Package Manager support. [#71] 42 | * Add SwiftUI Image support. [#82] 43 | 44 | ### Bug Fixes 45 | 46 | _None._ 47 | 48 | ### Internal Changes 49 | 50 | - Add this changelog file. [#70] 51 | - Reorganise the repo to use SPM's folder structure. [#72] 52 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo.xcodeproj/xcshareddata/xcschemes/GridiconsDemo.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 37 | 38 | 39 | 40 | 41 | 42 | 52 | 54 | 60 | 61 | 62 | 63 | 69 | 71 | 77 | 78 | 79 | 80 | 82 | 83 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // GridiconsDemo 4 | // 5 | // Created by James Frost on 01/04/2016. 6 | // Copyright © 2016 Automattic. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "29x29", 36 | "scale" : "1x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "29x29", 41 | "scale" : "2x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "40x40", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "40x40", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "76x76", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "76x76", 61 | "scale" : "2x" 62 | } 63 | ], 64 | "info" : { 65 | "version" : 1, 66 | "author" : "xcode" 67 | } 68 | } -------------------------------------------------------------------------------- /Demo/GridiconsDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UIStatusBarStyle 34 | UIStatusBarStyleLightContent 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | UIViewControllerBasedStatusBarAppearance 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /Demo/GridiconsDemo/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // GridiconsDemo 4 | // 5 | // Created by James Frost on 01/04/2016. 6 | // Copyright © 2016 Automattic. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import Gridicons 11 | 12 | class ImageCell: UICollectionViewCell { 13 | @IBOutlet weak var imageView: UIImageView! 14 | 15 | override func awakeFromNib() { 16 | tintColor = .black 17 | imageView.layer.borderColor = UIColor.lightGray.cgColor 18 | imageView.layer.borderWidth = 1.0 19 | } 20 | } 21 | 22 | class ViewController: UIViewController { 23 | 24 | @IBOutlet weak var collectionView: UICollectionView! 25 | @IBOutlet weak var sizeLabel: UILabel! 26 | 27 | let iconTypes: [GridiconType] = { 28 | var types = [GridiconType]() 29 | while let type = GridiconType(rawValue: types.count) { 30 | types.append(type) 31 | } 32 | 33 | return types 34 | }() 35 | 36 | @objc var iconSize = CGSize(width: 24.0, height: 24.0) 37 | 38 | override func viewDidLoad() { 39 | super.viewDidLoad() 40 | 41 | if let layout = collectionView.collectionViewLayout as? UICollectionViewFlowLayout { 42 | let padding: CGFloat = 8.0 43 | 44 | layout.estimatedItemSize = CGSize(width: iconSize.width + (padding * 2), height: iconSize.height + (padding * 2)) 45 | } 46 | } 47 | 48 | @IBAction func stepperValueChanged(_ sender: AnyObject) { 49 | guard let stepper = sender as? UIStepper else { return } 50 | 51 | let value = Int(stepper.value) 52 | 53 | sizeLabel.text = "\(value)px" 54 | iconSize = CGSize(width: CGFloat(value), height: CGFloat(value)) 55 | 56 | collectionView.reloadData() 57 | } 58 | } 59 | 60 | extension ViewController: UICollectionViewDataSource { 61 | func numberOfSections(in collectionView: UICollectionView) -> Int { 62 | return 1 63 | } 64 | 65 | func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { 66 | return iconTypes.count 67 | } 68 | 69 | func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { 70 | let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "ImageCell", for: indexPath) as! ImageCell 71 | 72 | cell.imageView.image = .gridicon(iconTypes[indexPath.row], size: iconSize) 73 | 74 | return cell 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source 'https://rubygems.org' 4 | 5 | gem 'cocoapods', '~> 1.11' 6 | gem 'cocoapods-check', '~> 1.1' 7 | gem 'fastlane', '~> 2.189' 8 | gem 'rake', '~> 13' 9 | gem 'rubocop', '~> 1.18' 10 | gem 'rubocop-rake', '~> 0.6.0' 11 | -------------------------------------------------------------------------------- /Gridicons.podspec: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | Pod::Spec.new do |s| 4 | s.name = 'Gridicons' 5 | s.version = '1.3.0-beta.1' 6 | 7 | s.summary = 'Gridicons is a tiny framework which generates Gridicon images at any resolution.' 8 | s.description = <<-DESC 9 | This framework contains a pack of icons – mainly ones used in the WordPress apps – 10 | that can be reused and scaled at any resolution. 11 | DESC 12 | 13 | s.homepage = 'https://github.com/Automattic/Gridicons-iOS' 14 | s.license = { type: 'GPLv2', file: 'LICENSE.md' } 15 | s.author = { 'Automattic' => 'mobile@automattic.com' } 16 | s.social_media_url = 'https://twitter.com/automattic' 17 | 18 | s.platform = :ios, '11.0' 19 | s.swift_version = '5.0' 20 | 21 | s.source = { git: 'https://github.com/Automattic/Gridicons-iOS.git', tag: s.version.to_s } 22 | s.source_files = 'Sources/Gridicons/**/*.swift' 23 | s.resource_bundles = { 24 | GridiconsAssets: [ 25 | 'Sources/Gridicons/Resources/*.{xcassets}' 26 | ] 27 | } 28 | 29 | s.test_spec do |test| 30 | test.source_files = ['Tests/GridiconsTests/**/*.{swift}'] 31 | end 32 | end 33 | -------------------------------------------------------------------------------- /Gridicons.stencil: -------------------------------------------------------------------------------- 1 | // Generated using SwiftGen, by O.Halligon — https://github.com/SwiftGen/SwiftGen 2 | import SwiftUI 3 | import UIKit 4 | 5 | {% if catalogs %} 6 | {% set enumName %}{{param.enumName|default:"GridiconType"}}{% endset %} 7 | 8 | {% macro enumBlock assets sp %} 9 | {{sp}} {% call casesBlock assets sp %} 10 | {% endmacro %} 11 | {% macro casesBlock assets sp %} 12 | {{sp}} {% for asset in assets %} 13 | {{sp}} {% if asset.type == "image" %} 14 | {{sp}} case {{asset.name|swiftIdentifier:"pretty"|lowerFirstWord|replace:"Ios","iOS"|escapeReservedKeywords}} 15 | {{sp}} {% endif %} 16 | {{sp}} {% endfor %} 17 | {% endmacro %} 18 | {% macro assetNamesBlock assets sp %} 19 | {{sp}} {% for asset in assets %} 20 | {{sp}} {% if asset.type == "image" %} 21 | {{sp}} case .{{asset.name|swiftIdentifier:"pretty"|lowerFirstWord|replace:"Ios","iOS"|escapeReservedKeywords}}: return "{{asset.name}}" 22 | {{sp}} {% endif %} 23 | {{sp}} {% endfor %} 24 | {% endmacro %} 25 | 26 | @objc 27 | public enum {{enumName}}: Int { 28 | {% call enumBlock catalogs.first.assets " " %} 29 | } 30 | 31 | extension {{enumName}} { 32 | var name: String { 33 | switch self { 34 | {% call assetNamesBlock catalogs.first.assets " " %} 35 | } 36 | } 37 | 38 | var icon: UIImage { 39 | let image = UIImage(named: name, in: bundle(), compatibleWith: nil) 40 | guard let result = image else { fatalError("Unable to load image named \(name).") } 41 | return result 42 | } 43 | 44 | @available(iOS 13.0, *) 45 | var image: Image { 46 | Image(name, bundle: bundle()) 47 | } 48 | } 49 | 50 | private extension GridiconType { 51 | func bundle() -> Bundle { 52 | #if SWIFT_PACKAGE 53 | let bundle = Bundle.module 54 | #else 55 | var bundle = Bundle(for: BundleToken.self) 56 | 57 | if let url = bundle.url(forResource: "GridiconsAssets", withExtension: "bundle"), 58 | let assetBundle = Bundle(url: url) { 59 | // When loaded through CocoaPods, assets reside in a separate resource bundle 60 | bundle = assetBundle 61 | } 62 | #endif 63 | return bundle 64 | } 65 | } 66 | 67 | private final class BundleToken {} 68 | 69 | {% else %} 70 | // No assets found 71 | {% endif %} 72 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.5 2 | 3 | import PackageDescription 4 | 5 | let package = Package( 6 | name: "Gridicons", 7 | platforms: [.iOS(.v11)], 8 | products: [ 9 | .library( 10 | name: "Gridicons", 11 | targets: ["Gridicons"] 12 | ) 13 | ], 14 | dependencies: [], 15 | targets: [ 16 | .target(name: "Gridicons"), 17 | .testTarget( 18 | name: "GridiconsTests", 19 | dependencies: [.target(name: "Gridicons")] 20 | ) 21 | ] 22 | ) 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [![Version](https://img.shields.io/cocoapods/v/Gridicons.svg?style=flat)](http://cocoadocs.org/docsets/Gridicons) 2 | [![License](https://img.shields.io/cocoapods/l/Gridicons.svg?style=flat)](http://cocoadocs.org/docsets/Gridicons) 3 | [![Platform](https://img.shields.io/cocoapods/p/Gridicons.svg?style=flat)](http://cocoadocs.org/docsets/Gridicons) 4 | 5 | # Gridicons iOS 6 | 7 | Gridicons-iOS is a small framework which produces images of the [Gridicons icon set](https://github.com/automattic/gridicons). 8 | 9 | The framework can be installed either via CocoaPods: 10 | 11 | `pod 'Gridicons', :podspec => 'https://raw.github.com/Automattic/Gridicons-iOS/develop/Gridicons.podspec'` 12 | 13 | or Carthage: 14 | 15 | `github 'Automattic/Gridicons-iOS'` 16 | 17 | ## Usage 18 | 19 | First, import the framework: 20 | 21 | `import Gridicons` 22 | 23 | Getting a `UIImage` of a Gridicon is as simple as: 24 | 25 | `let icon = UIImage.gridicon(.pages)` 26 | 27 | With type inference, this can be shortened further: 28 | 29 | `icon = .gridicon(.pages)` 30 | 31 | You can optionally specify a size (default is 24 x 24): 32 | 33 | `let icon = UIImage.gridicon(.pages, size: CGSize(width: 100, height: 100))` 34 | 35 | The images that the framework produces use the `AlwaysTemplate` rendering mode, so you can tint them however you like. 36 | 37 | ## SwiftUI Usage 38 | 39 | For SwiftUI projects (iOS 13.0+), you can use the `Image` type directly: 40 | 41 | ```swift 42 | import SwiftUI 43 | import Gridicons 44 | 45 | struct ContentView: View { 46 | var body: some View { 47 | Image.gridicon(.pages) 48 | .foregroundStyle(.orange) // Tints the icon 49 | } 50 | } 51 | ``` 52 | 53 | The SwiftUI `Image` type also supports the template rendering mode, so you can tint it using the `foregroundStyle` modifier. 54 | 55 | ## Development 56 | 57 | For code changes in `GridiconsGenerated.swift`: 58 | 59 | * Edit the `Gridicons.stencil` file to modify the template 60 | * If you haven't already, run `rake dependencies` to install SwiftGen 61 | * Run `rake gen` to regenerate the `GridiconsGenerated.swift` file 62 | 63 | ## Adding new icons 64 | 65 | To add new icons as they're added to the [Gridicons icon set](https://github.com/automattic/gridicons), complete the following steps: 66 | 67 | * Add the icon from the `pdf` directory in the main Gridicons project to the `Gridicons.xcassets` catalog in this project 68 | * Rename the icon so it no longer has the `gridicons-` prefix 69 | * Select the icon in the asset catalog and change these settings: 70 | * Render As -> Template Image 71 | * Resizing -> Preserve Vector Data 72 | * Scales -> Single Scale 73 | * If you haven't already, run `rake dependencies` to install SwiftGen 74 | * Run `rake gen` to regenerate the `GridiconsGenerated.swift` file 75 | * Commit your changes and release a new pod version. 76 | 77 | ## Updating existing icons 78 | 79 | If you need to update a existing icon, update the PDF in the asset catalog with the new version and release a new pod version. 80 | 81 | ## License 82 | 83 | Gridicons-iOS is licensed under [GNU General Public License v2 (or later)](./LICENSE.md). 84 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | SWIFTGEN_VERSION = '6.1.0' 4 | 5 | require 'fileutils' 6 | require 'tmpdir' 7 | require 'rake/clean' 8 | PROJECT_DIR = __dir__ 9 | 10 | task default: %w[gen] 11 | 12 | desc 'Install required dependencies' 13 | task dependencies: %w[dependencies:check] 14 | 15 | namespace :dependencies do 16 | task check: %w[gen:check] 17 | 18 | namespace :gen do 19 | desc 'Install SwiftGen if needed' 20 | task :check do 21 | if swiftgen_needs_install 22 | dependency_failed('SwiftGen') 23 | Rake::Task['dependencies:gen:install'].invoke 24 | end 25 | end 26 | 27 | desc 'Install SwiftGen' 28 | task :install do 29 | puts "Installing SwiftGen #{SWIFTGEN_VERSION} into #{swiftgen_path}" 30 | Dir.mktmpdir do |tmpdir| 31 | zipfile = "#{tmpdir}/swiftgen-#{SWIFTGEN_VERSION}.zip" 32 | source = "https://github.com/SwiftGen/SwiftGen/releases/download/#{SWIFTGEN_VERSION}/swiftgen-#{SWIFTGEN_VERSION}.zip" 33 | sh "curl --fail --location -o #{zipfile} #{source} || true" 34 | if File.exist?(zipfile) 35 | zipdir = "#{tmpdir}/swiftgen-#{SWIFTGEN_VERSION}" 36 | sh "unzip -q #{zipfile} -d #{zipdir}" 37 | Dir.chdir(zipdir) do 38 | puts "Copying SwiftGen #{SWIFTGEN_VERSION} into #{swiftgen_path}" 39 | FileUtils.rm_f(swiftgen_path) 40 | FileUtils.mkdir_p(swiftgen_path.to_s) 41 | FileUtils.cp_r("#{zipdir}/lib", swiftgen_path.to_s) 42 | FileUtils.cp_r("#{zipdir}/bin", swiftgen_path.to_s) 43 | end 44 | end 45 | end 46 | end 47 | CLOBBER << 'vendor/swiftgen' 48 | end 49 | end 50 | 51 | CLOBBER << 'vendor' 52 | 53 | desc 'Regenerates the master Gridicon enum from PDF assets' 54 | task gen: %w[dependencies:gen:check] do 55 | swiftgen %w[xcassets -p Gridicons.stencil Sources/Gridicons/Resources/Gridicons.xcassets] 56 | puts 'Done!' 57 | end 58 | 59 | def swiftgen_path 60 | "#{PROJECT_DIR}/vendor/swiftgen" 61 | end 62 | 63 | def swiftgen(args) 64 | args = [swiftgen_bin] + args 65 | sh("#{args.join(' ')} > Sources/Gridicons/GridiconsGenerated.swift") 66 | end 67 | 68 | def swiftgen_bin 69 | "#{swiftgen_path}/bin/swiftgen" 70 | end 71 | 72 | def swiftgen_needs_install 73 | return true unless File.exist?(swiftgen_bin) 74 | 75 | installed_version = `"#{swiftgen_bin}" --version | awk '{print $2}'`.chomp 76 | installed_version.slice!(0) 77 | (installed_version != SWIFTGEN_VERSION) 78 | end 79 | 80 | def dependency_failed(component) 81 | msg = "#{component} dependencies missing or outdated. " 82 | if ENV['DRY_RUN'] 83 | msg += 'Run rake dependencies to install them.' 84 | raise msg 85 | else 86 | msg += 'Installing...' 87 | puts msg 88 | end 89 | end 90 | -------------------------------------------------------------------------------- /Sources/Gridicons/Gridicons.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | import SwiftUI 3 | import UIKit 4 | 5 | public extension UIImage { 6 | 7 | /// - returns: A template image of the specified Gridicon type, at the default size. 8 | /// 9 | @objc(gridiconOfType:) 10 | static func gridicon(_ type: GridiconType) -> UIImage { 11 | return gridicon(type, size: Gridicon.defaultSize) 12 | } 13 | 14 | // These are two separate methods (rather than one method with a default argument) because Obj-C 15 | // 16 | @objc(gridiconOfType:withSize:) 17 | static func gridicon(_ type: GridiconType, size: CGSize) -> UIImage { 18 | if let icon = Gridicon.cachedIcon(type: type, with: size) { 19 | return icon 20 | } 21 | 22 | let icon = Gridicon.generateIcon(type: type, with: size).withRenderingMode(.alwaysTemplate) 23 | Gridicon.cache.setObject(icon, forKey: "\(type.rawValue)-\(size.width)-\(size.height)" as AnyObject) 24 | 25 | return icon 26 | } 27 | } 28 | 29 | @available(iOS 13.0, *) 30 | public extension Image { 31 | /// - returns: A SwiftUI image of the specified Gridicon type. 32 | /// 33 | static func gridicon(_ type: GridiconType) -> Image { 34 | return type.image 35 | } 36 | } 37 | 38 | /// The Gridicon class encapsulates generation and caching of Gridicon icons, however requesting 39 | /// of images should be done via the UIImage extensions `gridicon(_:)` and `gridicon(_:size:)`. 40 | /// 41 | public class Gridicon: NSObject { 42 | public static let defaultSize = CGSize(width: 24.0, height: 24.0) 43 | 44 | fileprivate static let cache = NSCache() 45 | 46 | /// Removes all cached Gridicon images from the cache. 47 | /// 48 | static func clearCache() { 49 | cache.removeAllObjects() 50 | } 51 | 52 | fileprivate static func cachedIcon(type: GridiconType, with size: CGSize) -> UIImage? { 53 | return cache.object(forKey: "\(type.rawValue)-\(size.width)-\(size.height)" as AnyObject) as? UIImage 54 | } 55 | 56 | fileprivate static func generateIcon(type: GridiconType, with size: CGSize) -> UIImage { 57 | let renderer = UIGraphicsImageRenderer(size: size) 58 | let image = renderer.image { _ in 59 | type.icon.draw(in: CGRect(origin: .zero, size: size)) 60 | } 61 | return image 62 | } 63 | 64 | // MARK: - Deprecated 65 | 66 | /// - returns: A template image of the specified Gridicon type, at the default size. 67 | /// 68 | @available(*, deprecated, message: "Use UIImage.gridicon(_:) instead.") 69 | public static func iconOfType(_ type: GridiconType) -> UIImage { 70 | return .gridicon(type) 71 | } 72 | 73 | /// - returns: A template image of the specified Gridicon type, at the specified size. 74 | @available(*, deprecated, message: "Use UIImage.gridicon(_:size:) instead.") 75 | public static func iconOfType(_ type: GridiconType, withSize size: CGSize) -> UIImage { 76 | return .gridicon(type, size: size) 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add-image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add-image.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add-image.imageset/add-image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/add-image.imageset/add-image.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add-outline.imageset/add-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/add-outline.imageset/add-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "add.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/add.imageset/add.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/add.imageset/add.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-center.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-center.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-center.imageset/align-center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-center.imageset/align-center.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-center.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-image-center.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-center.imageset/align-image-center.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-image-center.imageset/align-image-center.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-image-left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-left.imageset/align-image-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-image-left.imageset/align-image-left.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-none.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-image-none.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-none.imageset/align-image-none.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-image-none.imageset/align-image-none.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-image-right.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-image-right.imageset/align-image-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-image-right.imageset/align-image-right.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-justify.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-justify.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-justify.imageset/align-justify.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-justify.imageset/align-justify.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-left.imageset/align-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-left.imageset/align-left.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "align-right.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/align-right.imageset/align-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/align-right.imageset/align-right.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-down.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-down.imageset/arrow-down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/arrow-down.imageset/arrow-down.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-left.imageset/arrow-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/arrow-left.imageset/arrow-left.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-right.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-right.imageset/arrow-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/arrow-right.imageset/arrow-right.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "arrow-up.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/arrow-up.imageset/arrow-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/arrow-up.imageset/arrow-up.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/aside.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "aside.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/aside.imageset/aside.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/aside.imageset/aside.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/attachment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "attachment.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/attachment.imageset/attachment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/attachment.imageset/attachment.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/audio.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "audio.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/audio.imageset/audio.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/audio.imageset/audio.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bell.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bell.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bell.imageset/bell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/bell.imageset/bell.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/block.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "block.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/block.imageset/block.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/block.imageset/block.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bold.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bold.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bold.imageset/bold.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/bold.imageset/bold.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/book.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "book.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/book.imageset/book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/book.imageset/book.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bookmark-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bookmark-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bookmark-outline.imageset/bookmark-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/bookmark-outline.imageset/bookmark-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bookmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bookmark.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bookmark.imageset/bookmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/bookmark.imageset/bookmark.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/briefcase.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "briefcase.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/briefcase.imageset/briefcase.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/briefcase.imageset/briefcase.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bug.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bug.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/bug.imageset/bug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/bug.imageset/bug.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/calendar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "calendar.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/calendar.imageset/calendar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/calendar.imageset/calendar.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "camera.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/camera.imageset/camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/camera.imageset/camera.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/caption.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "caption.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/caption.imageset/caption.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/caption.imageset/caption.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cart.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cart.imageset/cart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cart.imageset/cart.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chat.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chat.imageset/chat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/chat.imageset/chat.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/checkmark-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "checkmark-circle.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/checkmark-circle.imageset/checkmark-circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/checkmark-circle.imageset/checkmark-circle.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "checkmark.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/checkmark.imageset/checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/checkmark.imageset/checkmark.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chevron-down.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-down.imageset/chevron-down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/chevron-down.imageset/chevron-down.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chevron-left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-left.imageset/chevron-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/chevron-left.imageset/chevron-left.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chevron-right.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-right.imageset/chevron-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/chevron-right.imageset/chevron-right.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chevron-up.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/chevron-up.imageset/chevron-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/chevron-up.imageset/chevron-up.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/clear-formatting.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "clear-formatting.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/clear-formatting.imageset/clear-formatting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/clear-formatting.imageset/clear-formatting.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/clipboard.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "clipboard.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/clipboard.imageset/clipboard.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/clipboard.imageset/clipboard.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-download.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cloud-download.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-download.imageset/cloud-download.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cloud-download.imageset/cloud-download.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cloud-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-outline.imageset/cloud-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cloud-outline.imageset/cloud-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-upload.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cloud-upload.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud-upload.imageset/cloud-upload.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cloud-upload.imageset/cloud-upload.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cloud.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cloud.imageset/cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cloud.imageset/cloud.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/code.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "code.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/code.imageset/code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/code.imageset/code.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cog.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cog.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cog.imageset/cog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cog.imageset/cog.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/comment.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "comment.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/comment.imageset/comment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/comment.imageset/comment.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/computer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "computer.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/computer.imageset/computer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/computer.imageset/computer.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/coupon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "coupon.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/coupon.imageset/coupon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/coupon.imageset/coupon.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/create.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "create.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/create.imageset/create.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/create.imageset/create.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/credit-card.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "credit-card.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/credit-card.imageset/credit-card.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/credit-card.imageset/credit-card.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/crop.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "crop.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/crop.imageset/crop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/crop.imageset/crop.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cross-circle.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross-circle.imageset/cross-circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cross-circle.imageset/cross-circle.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross-small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cross-small.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross-small.imageset/cross-small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cross-small.imageset/cross-small.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cross.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/cross.imageset/cross.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/cross.imageset/cross.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/custom-post-type.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "custom-post-type.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/custom-post-type.imageset/custom-post-type.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/custom-post-type.imageset/custom-post-type.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/customize.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "customize.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/customize.imageset/customize.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/customize.imageset/customize.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/domains.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "domains.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/domains.imageset/domains.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/domains.imageset/domains.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/dropdown.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dropdown.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/dropdown.imageset/dropdown.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/dropdown.imageset/dropdown.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ellipsis-circle.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis-circle.imageset/ellipsis-circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis-circle.imageset/ellipsis-circle.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ellipsis.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis.imageset/ellipsis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/ellipsis.imageset/ellipsis.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/external.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "external.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/external.imageset/external.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/external.imageset/external.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/filter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "filter.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/filter.imageset/filter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/filter.imageset/filter.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "flag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flag.imageset/flag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/flag.imageset/flag.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flip-horizontal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "flip-horizontal.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flip-horizontal.imageset/flip-horizontal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/flip-horizontal.imageset/flip-horizontal.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flip-vertical.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "flip-vertical.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/flip-vertical.imageset/flip-vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/flip-vertical.imageset/flip-vertical.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/folder-multiple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "folder-multiple.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/folder-multiple.imageset/folder-multiple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/folder-multiple.imageset/folder-multiple.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/folder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "folder.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/folder.imageset/folder.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/folder.imageset/folder.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen-exit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fullscreen-exit.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen-exit.imageset/fullscreen-exit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen-exit.imageset/fullscreen-exit.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fullscreen.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen.imageset/fullscreen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/fullscreen.imageset/fullscreen.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/gift.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gift.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/gift.imageset/gift.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/gift.imageset/gift.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/globe.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "globe.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/globe.imageset/globe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/globe.imageset/globe.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/grid.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "grid.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/grid.imageset/grid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/grid.imageset/grid.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h1.imageset/heading-h1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h1.imageset/heading-h1.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h2.imageset/heading-h2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h2.imageset/heading-h2.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h3.imageset/heading-h3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h3.imageset/heading-h3.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h4.imageset/heading-h4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h4.imageset/heading-h4.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h5.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h5.imageset/heading-h5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h5.imageset/heading-h5.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading-h6.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading-h6.imageset/heading-h6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading-h6.imageset/heading-h6.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heading.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heading.imageset/heading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heading.imageset/heading.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heart-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heart-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heart-outline.imageset/heart-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heart-outline.imageset/heart-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "heart.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/heart.imageset/heart.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/heart.imageset/heart.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/help-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "help-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/help-outline.imageset/help-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/help-outline.imageset/help-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/help.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "help.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/help.imageset/help.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/help.imageset/help.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/history.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "history.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/history.imageset/history.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/history.imageset/history.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/house.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "house.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/house.imageset/house.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/house.imageset/house.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image-multiple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-multiple.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image-multiple.imageset/image-multiple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/image-multiple.imageset/image-multiple.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image-remove.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image-remove.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image-remove.imageset/image-remove.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/image-remove.imageset/image-remove.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "image.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/image.imageset/image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/image.imageset/image.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/indent-left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "indent-left.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/indent-left.imageset/indent-left.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/indent-left.imageset/indent-left.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/indent-right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "indent-right.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/indent-right.imageset/indent-right.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/indent-right.imageset/indent-right.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/info-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "info-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/info-outline.imageset/info-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/info-outline.imageset/info-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/info.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "info.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/info.imageset/info.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/info.imageset/info.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ink.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ink.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/ink.imageset/ink.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/ink.imageset/ink.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/institution.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "institution.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/institution.imageset/institution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/institution.imageset/institution.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/italic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "italic.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/italic.imageset/italic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/italic.imageset/italic.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/layout-blocks.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "layout-blocks.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/layout-blocks.imageset/layout-blocks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/layout-blocks.imageset/layout-blocks.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/layout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "layout.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/layout.imageset/layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/layout.imageset/layout.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/line-graph.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "line-graph.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/line-graph.imageset/line-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/line-graph.imageset/line-graph.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/link-break.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "link-break.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/link-break.imageset/link-break.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/link-break.imageset/link-break.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/link.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "link.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/link.imageset/link.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/link.imageset/link.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "list-checkmark.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-checkmark.imageset/list-checkmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/list-checkmark.imageset/list-checkmark.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered-rtl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "list-ordered-rtl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered-rtl.imageset/list-ordered-rtl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered-rtl.imageset/list-ordered-rtl.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "list-ordered.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered.imageset/list-ordered.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/list-ordered.imageset/list-ordered.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-unordered.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "list-unordered.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/list-unordered.imageset/list-unordered.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/list-unordered.imageset/list-unordered.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "location.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/location.imageset/location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/location.imageset/location.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/lock.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lock.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/lock.imageset/lock.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/lock.imageset/lock.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/mail.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mail.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/mail.imageset/mail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/mail.imageset/mail.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/mention.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mention.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/mention.imageset/mention.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/mention.imageset/mention.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/menu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "menu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/menu.imageset/menu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/menu.imageset/menu.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/menus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "menus.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/menus.imageset/menus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/menus.imageset/menus.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/microphone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "microphone.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/microphone.imageset/microphone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/microphone.imageset/microphone.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/minus-small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "minus-small.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/minus-small.imageset/minus-small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/minus-small.imageset/minus-small.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "minus.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/minus.imageset/minus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/minus.imageset/minus.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/money.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "money.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/money.imageset/money.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/money.imageset/money.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/multiple-users.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "multiple-users.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/multiple-users.imageset/multiple-users.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/multiple-users.imageset/multiple-users.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/my-sites-horizon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "my-sites-horizon.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/my-sites-horizon.imageset/my-sites-horizon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/my-sites-horizon.imageset/my-sites-horizon.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/my-sites.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "my-sites.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/my-sites.imageset/my-sites.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/my-sites.imageset/my-sites.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/nametag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nametag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/nametag.imageset/nametag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/nametag.imageset/nametag.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/next-page.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "next-page.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/next-page.imageset/next-page.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/next-page.imageset/next-page.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/not-visible.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "not-visible.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/not-visible.imageset/not-visible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/not-visible.imageset/not-visible.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/notice-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "notice-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/notice-outline.imageset/notice-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/notice-outline.imageset/notice-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/notice.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "notice.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/notice.imageset/notice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/notice.imageset/notice.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/offline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "offline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/offline.imageset/offline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/offline.imageset/offline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/p2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "p2-icon.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/p2.imageset/p2-icon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/p2.imageset/p2-icon.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pages.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pages.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pages.imageset/pages.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/pages.imageset/pages.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pause.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pause.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pause.imageset/pause.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/pause.imageset/pause.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pencil.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pencil.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pencil.imageset/pencil.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/pencil.imageset/pencil.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/phone.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "phone.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/phone.imageset/phone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/phone.imageset/phone.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pin.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/pin.imageset/pin.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/pin.imageset/pin.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plans.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "plans.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plans.imageset/plans.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/plans.imageset/plans.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "play.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/play.imageset/play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/play.imageset/play.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plugins.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "plugins.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plugins.imageset/plugins.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/plugins.imageset/plugins.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plus-small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "plus-small.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plus-small.imageset/plus-small.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/plus-small.imageset/plus-small.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "plus.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/plus.imageset/plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/plus.imageset/plus.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/popout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "popout.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/popout.imageset/popout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/popout.imageset/popout.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/posts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "posts.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/posts.imageset/posts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/posts.imageset/posts.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/print.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "print.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/print.imageset/print.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/print.imageset/print.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-downloadable.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "product-downloadable.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-downloadable.imageset/product-downloadable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/product-downloadable.imageset/product-downloadable.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-external.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "product-external.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-external.imageset/product-external.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/product-external.imageset/product-external.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-virtual.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "product-virtual.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product-virtual.imageset/product-virtual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/product-virtual.imageset/product-virtual.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "product.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/product.imageset/product.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/product.imageset/product.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/quote.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "quote.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/quote.imageset/quote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/quote.imageset/quote.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/read-more.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "read-more.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/read-more.imageset/read-more.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/read-more.imageset/read-more.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow-conversation.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reader-follow-conversation.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow-conversation.imageset/reader-follow-conversation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow-conversation.imageset/reader-follow-conversation.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reader-follow.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow.imageset/reader-follow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reader-follow.imageset/reader-follow.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-following-conversation.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reader-following-conversation.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-following-conversation.imageset/reader-following-conversation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reader-following-conversation.imageset/reader-following-conversation.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-following.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reader-following.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader-following.imageset/reader-following.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reader-following.imageset/reader-following.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reader.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reader.imageset/reader.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reader.imageset/reader.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reblog.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reblog.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reblog.imageset/reblog.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reblog.imageset/reblog.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/redo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "redo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/redo.imageset/redo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/redo.imageset/redo.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/refresh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "refresh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/refresh.imageset/refresh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/refresh.imageset/refresh.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/refund.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "refund.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/refund.imageset/refund.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/refund.imageset/refund.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reply.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "reply.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/reply.imageset/reply.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/reply.imageset/reply.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/resize.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "resize.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/resize.imageset/resize.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/resize.imageset/resize.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/rotate.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rotate.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/rotate.imageset/rotate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/rotate.imageset/rotate.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/scheduled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "scheduled.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/scheduled.imageset/scheduled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/scheduled.imageset/scheduled.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "search.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/search.imageset/search.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/search.imageset/search.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share-computer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share-computer.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share-computer.imageset/share-computer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/share-computer.imageset/share-computer.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share-ios.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share-ios.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share-ios.imageset/share-ios.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/share-ios.imageset/share-ios.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "share.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/share.imageset/share.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/share.imageset/share.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/shipping.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shipping.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/shipping.imageset/shipping.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/shipping.imageset/shipping.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/shutter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "shutter.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/shutter.imageset/shutter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/shutter.imageset/shutter.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/sign-out.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sign-out.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/sign-out.imageset/sign-out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/sign-out.imageset/sign-out.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/site.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "site.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/site.imageset/site.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/site.imageset/site.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/spam.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "spam.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/spam.imageset/spam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/spam.imageset/spam.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/speaker.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "speaker.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/speaker.imageset/speaker.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/speaker.imageset/speaker.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/special-character.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "special-character.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/special-character.imageset/special-character.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/special-character.imageset/special-character.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/star-outline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "star-outline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/star-outline.imageset/star-outline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/star-outline.imageset/star-outline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "star.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/star.imageset/star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/star.imageset/star.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-alt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats-alt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-alt.imageset/stats-alt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats-alt.imageset/stats-alt.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-down-alt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats-down-alt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-down-alt.imageset/stats-down-alt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats-down-alt.imageset/stats-down-alt.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-down.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats-down.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-down.imageset/stats-down.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats-down.imageset/stats-down.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-up-alt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats-up-alt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-up-alt.imageset/stats-up-alt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats-up-alt.imageset/stats-up-alt.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats-up.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats-up.imageset/stats-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats-up.imageset/stats-up.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "stats.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/stats.imageset/stats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/stats.imageset/stats.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/status.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "status.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/status.imageset/status.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/status.imageset/status.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/story.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "story.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true, 14 | "template-rendering-intent" : "template" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/story.imageset/story.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/story.imageset/story.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/strikethrough.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "strikethrough.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/strikethrough.imageset/strikethrough.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/strikethrough.imageset/strikethrough.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/sync.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sync.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/sync.imageset/sync.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/sync.imageset/sync.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/tablet.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tablet.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/tablet.imageset/tablet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/tablet.imageset/tablet.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/tag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/tag.imageset/tag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/tag.imageset/tag.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/text-color.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "text-color.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/text-color.imageset/text-color.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/text-color.imageset/text-color.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/themes.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "themes.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/themes.imageset/themes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/themes.imageset/themes.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/thumbs-up.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "thumbs-up.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/thumbs-up.imageset/thumbs-up.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/thumbs-up.imageset/thumbs-up.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/time.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "time.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/time.imageset/time.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/time.imageset/time.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/trash.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "trash.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/trash.imageset/trash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/trash.imageset/trash.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/trophy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "trophy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/trophy.imageset/trophy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/trophy.imageset/trophy.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/types.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "types.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/types.imageset/types.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/types.imageset/types.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/underline.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "underline.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/underline.imageset/underline.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/underline.imageset/underline.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/undo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "undo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/undo.imageset/undo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/undo.imageset/undo.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user-add.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "user-add.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user-add.imageset/user-add.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/user-add.imageset/user-add.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "user-circle.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user-circle.imageset/user-circle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/user-circle.imageset/user-circle.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "user.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/user.imageset/user.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/user.imageset/user.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video-camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "video-camera.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video-camera.imageset/video-camera.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/video-camera.imageset/video-camera.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video-remove.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "video-remove.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video-remove.imageset/video-remove.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/video-remove.imageset/video-remove.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "video.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/video.imageset/video.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/video.imageset/video.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/visible.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "visible.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/visible.imageset/visible.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/visible.imageset/visible.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/zoom-in.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zoom-in.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/zoom-in.imageset/zoom-in.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/zoom-in.imageset/zoom-in.pdf -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/zoom-out.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zoom-out.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template", 14 | "preserves-vector-representation" : true 15 | } 16 | } -------------------------------------------------------------------------------- /Sources/Gridicons/Resources/Gridicons.xcassets/zoom-out.imageset/zoom-out.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/Gridicons-iOS/ba78655c9253412f715459db101e46f905254378/Sources/Gridicons/Resources/Gridicons.xcassets/zoom-out.imageset/zoom-out.pdf -------------------------------------------------------------------------------- /Tests/GridiconsTests/GridiconsTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GridiconsTests.swift 3 | // GridiconsTests 4 | // 5 | // Created by James Frost on 04/04/2016. 6 | // Copyright © 2016 Automattic. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import Gridicons 11 | 12 | class GridiconsTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | Gridicon.clearCache() 17 | } 18 | 19 | func testIconsAreCached() { 20 | let icon: UIImage = .gridicon(.addImage) 21 | let icon2: UIImage = .gridicon(.addImage) 22 | 23 | XCTAssertEqual(icon, icon2) 24 | 25 | Gridicon.clearCache() 26 | let icon3: UIImage = .gridicon(.addImage) 27 | 28 | XCTAssertNotEqual(icon2, icon3) 29 | } 30 | 31 | func testIconsAreTheCorrectSize() { 32 | let icon: UIImage = .gridicon(.domains) 33 | XCTAssertEqual(icon.size, Gridicon.defaultSize) 34 | 35 | let size = CGSize(width: 250, height: 250) 36 | let icon2: UIImage = .gridicon(.userCircle, size: size) 37 | XCTAssertEqual(icon2.size, size) 38 | } 39 | 40 | func testSingleIconGenerationPerformance() { 41 | self.measure { 42 | let _ = UIImage.gridicon(.pages) 43 | } 44 | } 45 | 46 | func testAllIconGenerationPerformance() { 47 | let iconTypes: [GridiconType] = { 48 | var types = [GridiconType]() 49 | while let type = GridiconType(rawValue: types.count) { 50 | types.append(type) 51 | } 52 | 53 | return types 54 | }() 55 | 56 | self.measure { 57 | let _ = iconTypes.map { UIImage.gridicon($0) } 58 | } 59 | } 60 | 61 | func testAllIconsCanBeLoaded() { 62 | var iconTypes = [GridiconType]() 63 | while let type = GridiconType(rawValue: iconTypes.count) { 64 | iconTypes.append(type) 65 | } 66 | 67 | // An error will be thrown if instantiating an icon fails 68 | iconTypes.forEach({ let _ = UIImage.gridicon($0) }) 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | default_platform(:ios) 4 | 5 | platform :ios do 6 | desc 'Builds the Swift package and runs tests' 7 | lane :test do 8 | run_tests( 9 | package_path: '.', 10 | scheme: 'Gridicons', 11 | devices: ['iPhone 15'], 12 | deployment_target_version: '14.5', 13 | prelaunch_simulator: true, 14 | buildlog_path: File.join(__dir__, '.build', 'logs'), 15 | derived_data_path: File.join(__dir__, '.build', 'derived-data') 16 | ) 17 | end 18 | end 19 | --------------------------------------------------------------------------------