@internetarchive/bookreader 5.0.0-26 → 5.0.0-29
Sign up to get free protection for your applications and to get access to all the features.
- package/.husky/_/husky.sh +30 -0
- package/BookReader/BookReader.css +1 -1
- package/BookReader/BookReader.js +1 -1
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/bookreader-component-bundle.js +570 -542
- package/BookReader/bookreader-component-bundle.js.LICENSE.txt +23 -0
- package/BookReader/bookreader-component-bundle.js.map +1 -1
- package/BookReader/plugins/plugin.search.js +1 -1
- package/BookReader/plugins/plugin.search.js.map +1 -1
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/BookReader/plugins/plugin.url.js +1 -1
- package/BookReader/plugins/plugin.url.js.map +1 -1
- package/BookReaderDemo/BookReaderDemo.css +14 -1
- package/BookReaderDemo/IADemoBr.js +104 -0
- package/BookReaderDemo/demo-internetarchive.html +65 -98
- package/CHANGELOG.md +10 -0
- package/package.json +9 -6
- package/src/BookNavigator/assets/ia-logo.js +17 -0
- package/src/BookNavigator/book-navigator.js +521 -0
- package/src/BookNavigator/bookmarks/bookmark-button.js +2 -1
- package/src/BookNavigator/bookmarks/bookmarks-provider.js +20 -8
- package/src/BookNavigator/bookmarks/ia-bookmarks.js +84 -51
- package/src/BookNavigator/downloads/downloads-provider.js +5 -9
- package/src/BookNavigator/downloads/downloads.js +1 -0
- package/src/BookNavigator/search/search-provider.js +15 -8
- package/src/BookNavigator/sharing.js +27 -0
- package/src/BookNavigator/visual-adjustments/visual-adjustments-provider.js +9 -8
- package/src/BookNavigator/volumes/volumes-provider.js +44 -13
- package/src/BookNavigator/volumes/volumes.js +14 -3
- package/src/BookReader/options.js +6 -0
- package/src/BookReader.js +20 -8
- package/src/BookReaderComponent/BookReaderComponent.js +53 -32
- package/src/css/_BRComponent.scss +1 -1
- package/src/plugins/search/plugin.search.js +10 -9
- package/src/plugins/tts/FestivalTTSEngine.js +1 -1
- package/src/plugins/url/UrlPlugin.js +184 -0
- package/src/plugins/url/plugin.url.js +220 -0
- package/{src → stat}/BookNavigator/BookModel.js +0 -0
- package/{src → stat}/BookNavigator/BookNavigator.js +109 -102
- package/stat/BookNavigator/assets/bookmark-colors.js +15 -0
- package/stat/BookNavigator/assets/button-base.js +61 -0
- package/stat/BookNavigator/assets/ia-logo.js +17 -0
- package/stat/BookNavigator/assets/icon_checkmark.js +6 -0
- package/stat/BookNavigator/assets/icon_close.js +3 -0
- package/stat/BookNavigator/assets/icon_sort_asc.js +5 -0
- package/stat/BookNavigator/assets/icon_sort_desc.js +5 -0
- package/stat/BookNavigator/assets/icon_sort_neutral.js +5 -0
- package/stat/BookNavigator/assets/icon_volumes.js +11 -0
- package/stat/BookNavigator/bookmarks/bookmark-button.js +64 -0
- package/stat/BookNavigator/bookmarks/bookmark-edit.js +215 -0
- package/stat/BookNavigator/bookmarks/bookmarks-list.js +285 -0
- package/stat/BookNavigator/bookmarks/bookmarks-loginCTA.js +28 -0
- package/stat/BookNavigator/bookmarks/bookmarks-provider.js +56 -0
- package/stat/BookNavigator/bookmarks/ia-bookmarks.js +523 -0
- package/{src → stat}/BookNavigator/br-fullscreen-mgr.js +1 -2
- package/stat/BookNavigator/delete-modal-actions.js +49 -0
- package/stat/BookNavigator/downloads/downloads-provider.js +72 -0
- package/stat/BookNavigator/downloads/downloads.js +139 -0
- package/stat/BookNavigator/provider-config.js +0 -0
- package/stat/BookNavigator/search/a-search-result.js +55 -0
- package/stat/BookNavigator/search/search-provider.js +180 -0
- package/stat/BookNavigator/search/search-results.js +360 -0
- package/{src/ItemNavigator/providers → stat/BookNavigator}/sharing.js +3 -5
- package/stat/BookNavigator/visual-adjustments/visual-adjustments-provider.js +94 -0
- package/stat/BookNavigator/visual-adjustments/visual-adjustments.js +280 -0
- package/stat/BookNavigator/volumes/volumes-provider.js +83 -0
- package/stat/BookNavigator/volumes/volumes.js +178 -0
- package/stat/BookReader/BookModel.js +518 -0
- package/stat/BookReader/DebugConsole.js +54 -0
- package/stat/BookReader/DragScrollable.js +233 -0
- package/stat/BookReader/ImageCache.js +116 -0
- package/stat/BookReader/Mode1Up.js +102 -0
- package/stat/BookReader/Mode1UpLit.js +434 -0
- package/stat/BookReader/Mode2Up.js +1372 -0
- package/stat/BookReader/ModeSmoothZoom.js +177 -0
- package/stat/BookReader/ModeThumb.js +344 -0
- package/stat/BookReader/Navbar/Navbar.js +310 -0
- package/stat/BookReader/PageContainer.js +120 -0
- package/stat/BookReader/ReduceSet.js +26 -0
- package/stat/BookReader/Toolbar/Toolbar.js +384 -0
- package/stat/BookReader/events.js +20 -0
- package/stat/BookReader/options.js +324 -0
- package/stat/BookReader/utils/HTMLDimensionsCacher.js +44 -0
- package/stat/BookReader/utils/classes.js +36 -0
- package/stat/BookReader/utils.js +240 -0
- package/stat/BookReader.js +2550 -0
- package/stat/BookReaderComponent/BookReaderComponent.js +117 -0
- package/stat/assets/icons/1up.svg +12 -0
- package/stat/assets/icons/2up.svg +15 -0
- package/stat/assets/icons/advance.svg +26 -0
- package/stat/assets/icons/chevron-right.svg +1 -0
- package/stat/assets/icons/close-circle-dark.svg +1 -0
- package/stat/assets/icons/close-circle.svg +1 -0
- package/stat/assets/icons/fullscreen.svg +17 -0
- package/stat/assets/icons/fullscreen_exit.svg +17 -0
- package/stat/assets/icons/hamburger.svg +15 -0
- package/stat/assets/icons/left-arrow.svg +12 -0
- package/stat/assets/icons/magnify-minus.svg +16 -0
- package/stat/assets/icons/magnify-plus.svg +17 -0
- package/stat/assets/icons/magnify.svg +15 -0
- package/stat/assets/icons/pause.svg +23 -0
- package/stat/assets/icons/play.svg +22 -0
- package/stat/assets/icons/playback-speed.svg +34 -0
- package/stat/assets/icons/read-aloud.svg +22 -0
- package/stat/assets/icons/review.svg +22 -0
- package/stat/assets/icons/thumbnails.svg +17 -0
- package/stat/assets/icons/voice.svg +1 -0
- package/stat/assets/icons/volume-full.svg +22 -0
- package/stat/assets/images/BRicons.png +0 -0
- package/stat/assets/images/BRicons.svg +94 -0
- package/stat/assets/images/BRicons_ia.png +0 -0
- package/stat/assets/images/back_pages.png +0 -0
- package/stat/assets/images/book_bottom_icon.png +0 -0
- package/stat/assets/images/book_down_icon.png +0 -0
- package/stat/assets/images/book_left_icon.png +0 -0
- package/stat/assets/images/book_leftmost_icon.png +0 -0
- package/stat/assets/images/book_right_icon.png +0 -0
- package/stat/assets/images/book_rightmost_icon.png +0 -0
- package/stat/assets/images/book_top_icon.png +0 -0
- package/stat/assets/images/book_up_icon.png +0 -0
- package/stat/assets/images/books_graphic.svg +177 -0
- package/stat/assets/images/booksplit.png +0 -0
- package/stat/assets/images/control_pause_icon.png +0 -0
- package/stat/assets/images/control_play_icon.png +0 -0
- package/stat/assets/images/embed_icon.png +0 -0
- package/stat/assets/images/icon-home-ia.png +0 -0
- package/stat/assets/images/icon_OL-logo-xs.png +0 -0
- package/stat/assets/images/icon_alert-xs.png +0 -0
- package/stat/assets/images/icon_book.svg +12 -0
- package/stat/assets/images/icon_bookmark.svg +12 -0
- package/stat/assets/images/icon_close-pop.png +0 -0
- package/stat/assets/images/icon_download.png +0 -0
- package/stat/assets/images/icon_gear.svg +14 -0
- package/stat/assets/images/icon_hamburger.svg +20 -0
- package/stat/assets/images/icon_home.png +0 -0
- package/stat/assets/images/icon_home.svg +21 -0
- package/stat/assets/images/icon_home_ia.png +0 -0
- package/stat/assets/images/icon_indicator.png +0 -0
- package/stat/assets/images/icon_info.svg +11 -0
- package/stat/assets/images/icon_one_page.svg +8 -0
- package/stat/assets/images/icon_pause.svg +1 -0
- package/stat/assets/images/icon_play.svg +1 -0
- package/stat/assets/images/icon_playback-rate.svg +15 -0
- package/stat/assets/images/icon_return.png +0 -0
- package/stat/assets/images/icon_search_button.svg +8 -0
- package/stat/assets/images/icon_share.svg +9 -0
- package/stat/assets/images/icon_skip-ahead.svg +6 -0
- package/stat/assets/images/icon_skip-back.svg +13 -0
- package/stat/assets/images/icon_speaker.svg +18 -0
- package/stat/assets/images/icon_speaker_open.svg +10 -0
- package/stat/assets/images/icon_thumbnails.svg +12 -0
- package/stat/assets/images/icon_toc.svg +5 -0
- package/stat/assets/images/icon_two_pages.svg +9 -0
- package/stat/assets/images/icon_zoomer.png +0 -0
- package/stat/assets/images/loading.gif +0 -0
- package/stat/assets/images/logo_icon.png +0 -0
- package/stat/assets/images/marker_chap-off.png +0 -0
- package/stat/assets/images/marker_chap-off.svg +11 -0
- package/stat/assets/images/marker_chap-off_ia.png +0 -0
- package/stat/assets/images/marker_chap-on.png +0 -0
- package/stat/assets/images/marker_chap-on.svg +11 -0
- package/stat/assets/images/marker_srch-on.svg +11 -0
- package/stat/assets/images/marker_srchchap-off.png +0 -0
- package/stat/assets/images/marker_srchchap-on.png +0 -0
- package/stat/assets/images/nav_control-dn.png +0 -0
- package/stat/assets/images/nav_control-dn_ia.png +0 -0
- package/stat/assets/images/nav_control-up.png +0 -0
- package/stat/assets/images/nav_control-up_ia.png +0 -0
- package/stat/assets/images/nav_control.png +0 -0
- package/stat/assets/images/one_page_mode_icon.png +0 -0
- package/stat/assets/images/paper-badge.png +0 -0
- package/stat/assets/images/print_icon.png +0 -0
- package/stat/assets/images/progressbar.gif +0 -0
- package/stat/assets/images/right_edges.png +0 -0
- package/stat/assets/images/slider.png +0 -0
- package/stat/assets/images/slider_ia.png +0 -0
- package/stat/assets/images/thumbnail_mode_icon.png +0 -0
- package/stat/assets/images/transparent.png +0 -0
- package/stat/assets/images/two_page_mode_icon.png +0 -0
- package/stat/assets/images/zoom_in_icon.png +0 -0
- package/stat/assets/images/zoom_out_icon.png +0 -0
- package/stat/css/BookReader.scss +89 -0
- package/stat/css/_BRBookmarks.scss +29 -0
- package/stat/css/_BRComponent.scss +13 -0
- package/stat/css/_BRfloat.scss +197 -0
- package/stat/css/_BRicon.scss +48 -0
- package/stat/css/_BRmain.scss +251 -0
- package/stat/css/_BRnav.scss +359 -0
- package/stat/css/_BRpages.scss +139 -0
- package/stat/css/_BRsearch.scss +226 -0
- package/stat/css/_BRtoolbar.scss +84 -0
- package/stat/css/_BRvendor.scss +5 -0
- package/stat/css/_MobileNav.scss +194 -0
- package/stat/css/_TextSelection.scss +32 -0
- package/stat/css/_colorbox.scss +52 -0
- package/stat/css/_controls.scss +253 -0
- package/stat/css/_icons.scss +121 -0
- package/stat/jquery-wrapper.js +4 -0
- package/stat/plugins/plugin.archive_analytics.js +86 -0
- package/stat/plugins/plugin.autoplay.js +129 -0
- package/stat/plugins/plugin.chapters.js +248 -0
- package/stat/plugins/plugin.iframe.js +48 -0
- package/stat/plugins/plugin.mobile_nav.js +288 -0
- package/stat/plugins/plugin.resume.js +68 -0
- package/stat/plugins/plugin.text_selection.js +291 -0
- package/{src → stat}/plugins/plugin.url.js +0 -0
- package/stat/plugins/plugin.vendor-fullscreen.js +247 -0
- package/stat/plugins/search/plugin.search.js +439 -0
- package/stat/plugins/search/view.js +439 -0
- package/stat/plugins/tts/AbstractTTSEngine.js +249 -0
- package/stat/plugins/tts/FestivalTTSEngine.js +169 -0
- package/stat/plugins/tts/PageChunk.js +107 -0
- package/stat/plugins/tts/PageChunkIterator.js +163 -0
- package/stat/plugins/tts/WebTTSEngine.js +357 -0
- package/stat/plugins/tts/plugin.tts.js +357 -0
- package/stat/plugins/tts/tooltip_dict.js +15 -0
- package/stat/plugins/tts/utils.js +91 -0
- package/stat/util/browserSniffing.js +30 -0
- package/stat/util/debouncer.js +26 -0
- package/stat/util/docCookies.js +67 -0
- package/stat/util/strings.js +34 -0
- package/tests/e2e/viewmode.test.js +30 -30
- package/tests/jest/BookReader/BookReaderPublicFunctions.test.js +64 -52
- package/tests/jest/BookReader.test.js +1 -1
- package/tests/jest/plugins/url/UrlPlugin.test.js +175 -0
- package/tests/jest/plugins/{plugin.url.test.js → url/plugin.url.test.js} +3 -2
- package/tests/karma/BookNavigator/book-navigator.test.js +413 -108
- package/tests/karma/BookNavigator/bookmarks/bookmark-button.test.js +44 -0
- package/tests/karma/BookNavigator/downloads/downloads-provider.test.js +6 -3
- package/tests/karma/BookNavigator/search/search-provider.test.js +106 -6
- package/tests/karma/BookNavigator/search/search-results.test.js +0 -2
- package/tests/karma/BookNavigator/sharing/sharing-provider.test.js +29 -20
- package/tests/karma/BookNavigator/volumes/volumes-provider.test.js +46 -22
- package/webpack.config.js +1 -1
- package/src/BookNavigator/assets/book-loader.js +0 -27
- package/src/ItemNavigator/ItemNavigator.js +0 -377
@@ -0,0 +1,117 @@
|
|
1
|
+
/**
|
2
|
+
* BookReaderTemplate to load BookNavigator components
|
3
|
+
*/
|
4
|
+
|
5
|
+
import { LitElement, html, css } from 'lit-element';
|
6
|
+
import { SharedResizeObserver } from '@internetarchive/shared-resize-observer';
|
7
|
+
|
8
|
+
import '@internetarchive/ia-item-navigator';
|
9
|
+
import '../BookNavigator/BookNavigator.js';
|
10
|
+
|
11
|
+
export class BookReader extends LitElement {
|
12
|
+
static get properties() {
|
13
|
+
return {
|
14
|
+
base64Json: { type: String },
|
15
|
+
baseHost: { type: String },
|
16
|
+
sharedObserver: { type: Object }
|
17
|
+
};
|
18
|
+
}
|
19
|
+
|
20
|
+
constructor() {
|
21
|
+
super();
|
22
|
+
this.base64Json = '';
|
23
|
+
this.baseHost = 'https://archive.org';
|
24
|
+
this.sharedObserver = new SharedResizeObserver();
|
25
|
+
}
|
26
|
+
|
27
|
+
firstUpdated() {
|
28
|
+
this.fetchData();
|
29
|
+
}
|
30
|
+
|
31
|
+
/**
|
32
|
+
* Fetch metadata response from public metadata API
|
33
|
+
* convert response to base64 data
|
34
|
+
* set base64 data to props
|
35
|
+
*/
|
36
|
+
async fetchData() {
|
37
|
+
const ocaid = new URLSearchParams(location.search).get('ocaid');
|
38
|
+
const response = await fetch(`${this.baseHost}/metadata/${ocaid}`);
|
39
|
+
const bookMetadata = await response.json();
|
40
|
+
const jsonBtoa = btoa(JSON.stringify(bookMetadata));
|
41
|
+
this.setBaseJSON(jsonBtoa);
|
42
|
+
}
|
43
|
+
|
44
|
+
/**
|
45
|
+
* Set base64 data to prop
|
46
|
+
* @param {string} value - base64 string format
|
47
|
+
*/
|
48
|
+
setBaseJSON(value) {
|
49
|
+
this.base64Json = value;
|
50
|
+
}
|
51
|
+
|
52
|
+
render() {
|
53
|
+
return html`
|
54
|
+
<div class="ia-bookreader">
|
55
|
+
<ia-item-navigator
|
56
|
+
.itemType=${'bookreader'}
|
57
|
+
.basehost=${this.baseHost}
|
58
|
+
.item=${this.base64Json}>
|
59
|
+
.sharedObserver=${this.sharedObserver}
|
60
|
+
<div slot="theater-main">
|
61
|
+
<slot name="theater-main"></slot>
|
62
|
+
</div>
|
63
|
+
</ia-item-navigator>
|
64
|
+
</div>
|
65
|
+
`;
|
66
|
+
}
|
67
|
+
|
68
|
+
static get styles() {
|
69
|
+
return css`
|
70
|
+
:host {
|
71
|
+
display: block;
|
72
|
+
--primaryBGColor: var(--black, #000);
|
73
|
+
--secondaryBGColor: #222;
|
74
|
+
--tertiaryBGColor: #333;
|
75
|
+
--primaryTextColor: var(--white, #fff);
|
76
|
+
--primaryCTAFill: #194880;
|
77
|
+
--primaryCTABorder: #c5d1df;
|
78
|
+
--secondaryCTAFill: #333;
|
79
|
+
--secondaryCTABorder: #999;
|
80
|
+
--primaryErrorCTAFill: #e51c26;
|
81
|
+
--primaryErrorCTABorder: #f8c6c8;
|
82
|
+
}
|
83
|
+
|
84
|
+
.ia-bookreader {
|
85
|
+
background-color: var(--primaryBGColor);
|
86
|
+
position: relative;
|
87
|
+
min-height: inherit;
|
88
|
+
height: inherit;
|
89
|
+
}
|
90
|
+
|
91
|
+
ia-item-navigator {
|
92
|
+
display: block;
|
93
|
+
width: 100%;
|
94
|
+
color: var(--primaryTextColor);
|
95
|
+
--menuButtonLabelDisplay: block;
|
96
|
+
--menuWidth: 320px;
|
97
|
+
--menuSliderBg: var(--secondaryBGColor);
|
98
|
+
--activeButtonBg: var(--tertiaryBGColor);
|
99
|
+
--subpanelRightBorderColor: var(--secondaryCTABorder);
|
100
|
+
--animationTiming: 100ms;
|
101
|
+
--iconFillColor: var(--primaryTextColor);
|
102
|
+
--iconStrokeColor: var(--primaryTextColor);
|
103
|
+
--menuSliderHeaderIconHeight: 2rem;
|
104
|
+
--menuSliderHeaderIconWidth: 2rem;
|
105
|
+
--iconWidth: 2.4rem;
|
106
|
+
--iconHeight: 2.4rem;
|
107
|
+
--shareLinkColor: var(--primaryTextColor);
|
108
|
+
--shareIconBorder: var(--primaryTextColor);
|
109
|
+
--shareIconBg: var(--secondaryBGColor);
|
110
|
+
--activityIndicatorLoadingDotColor: var(--primaryTextColor);
|
111
|
+
--activityIndicatorLoadingRingColor: var(--primaryTextColor);
|
112
|
+
}
|
113
|
+
`;
|
114
|
+
}
|
115
|
+
}
|
116
|
+
|
117
|
+
window.customElements.define("ia-bookreader", BookReader);
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg
|
2
|
+
width="11"
|
3
|
+
height="19"
|
4
|
+
viewBox="0 0 11 19"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="1upTitleID 1upDescID"
|
8
|
+
>
|
9
|
+
<title id="1upTitleID">One-page mode</title>
|
10
|
+
<desc id="1upDescID">An illustration of a rectangle representing a book page</desc>
|
11
|
+
<path d="m9.77194068 1c.10796015 0 .19839954.08352773.2220361.19570997l.00602322.05822495v16.49213018c0 .1202095-.07501651.22091-.17576747.2472283l-.05229185.0067066h-8.54388136c-.10796015 0-.19839954-.0835277-.2220361-.19571l-.00602322-.0582249v-16.49213018c0-.12020948.07501651-.22091.17576747-.24722832l.05229185-.0067066z" fill="none" stroke="#fff" stroke-width="1.5" />
|
12
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg
|
2
|
+
width="20"
|
3
|
+
height="19"
|
4
|
+
viewBox="0 0 20 19"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="2upTitleID 2upDescID"
|
8
|
+
>
|
9
|
+
<title id="2upTitleID">Two-page mode</title>
|
10
|
+
<desc id="2upDescID">An illustration of two rectangles in a row representing an open book</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd" stroke="#fff" stroke-width="1.5">
|
12
|
+
<path d="m18.5438814 1c.2159203 0 .396799.08352773.4440722.19570997l.0120464.05822495v16.49213018c0 .1202095-.150033.22091-.3515349.2472283l-.1045837.0067066h-17.08776275c-.21592031 0-.3967991-.0835277-.44407221-.19571l-.01204644-.0582249v-16.49213018c0-.12020948.15003302-.22091.35153494-.24722832l.10458371-.0067066z" />
|
13
|
+
<path d="m10 2v15" stroke-linecap="square" />
|
14
|
+
</g>
|
15
|
+
</svg>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
<svg
|
2
|
+
width="21"
|
3
|
+
height="19"
|
4
|
+
viewBox="0 0 21 19"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="advanceTitleID advanceDescID"
|
8
|
+
>
|
9
|
+
<title id="advanceTitleID">Advance icon</title>
|
10
|
+
<desc id="advanceDescID">An arrow pointing in a forward direction</desc>
|
11
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(-200.000000, -15.000000)">
|
13
|
+
<g transform="translate(56.922243, 5.000000)">
|
14
|
+
<g transform="translate(144.000000, 10.000000)">
|
15
|
+
<g transform="translate(11.000000, 10.000000) scale(-1, 1) translate(-11.000000, -10.000000) translate(1.000000, 0.000000)">
|
16
|
+
<polyline stroke="#fff" stroke-width="2" stroke-linejoin="round" points="14.4444444 16.6666667 20 16.6666667 20 3.33333333 5.55555556 3.33333333"></polyline>
|
17
|
+
<polygon fill="#fff" points="5.55555556 0 5.55555556 6.66666667 1.11111111 3.33333333"></polygon>
|
18
|
+
<text transform="translate(6.666667, 13.333333) scale(-1, 1) translate(-6.666667, -13.333333) " font-family="HelveticaNeue, Helvetica Neue, sans-serif" font-size="10" font-weight="normal" fill="#fff">
|
19
|
+
<tspan x="0" y="17.3333333">10</tspan>
|
20
|
+
</text>
|
21
|
+
</g>
|
22
|
+
</g>
|
23
|
+
</g>
|
24
|
+
</g>
|
25
|
+
</g>
|
26
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg height="8" viewBox="0 0 5 8" width="5" xmlns="http://www.w3.org/2000/svg"><path d="m.30238333.28352881c.36525795-.3556459.93280829-.37581056 1.32099799-.06558269l.09308988.0844372 3 3.08108108.08194437.09533317c.27484336.36339327.26799481.87009349-.01656959 1.22592581l-.08449101.09308363-3 2.91891892-.09533796.08189041c-.3633964.27465435-.86994721.2677153-1.22568389-.01679019l-.09305904-.08447119-.08189041-.09533796c-.27465435-.3633964-.2677153-.86994722.01679019-1.22568389l.0844712-.09305904 2.28335496-2.22227407-2.30247119-2.36338332-.08192523-.09530804c-.2997677-.39632298-.26447822-.96313393.10077973-1.31877983z" fill="#fff" fill-rule="evenodd"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg"><path d="m6 0c3.3137085 0 6 2.6862915 6 6s-2.6862915 6-6 6-6-2.6862915-6-6 2.6862915-6 6-6zm-2.3406945 2.96359116c-.19486814-.13499605-.46429254-.1157109-.63785889.05785545-.19526215.19526215-.19526215.51184463 0 .70710678l2.27155339 2.27144661-2.20567981 2.20557302-.05785545.06924789c-.13499605.19486814-.1157109.46429254.05785545.6378589.19526215.19526214.51184464.19526214.70710679 0l2.20557302-2.20567981 2.20557302 2.20567981.06924789.05785545c.19486814.13499605.46429254.1157109.6378589-.05785545.19526214-.19526215.19526214-.51184464 0-.70710679l-2.20567981-2.20557302 2.27155339-2.27144661.05785545-.06924789c.13499605-.19486814.1157109-.46429254-.05785545-.63785889-.19526215-.19526215-.51184463-.19526215-.70710678 0l-2.27144661 2.27155339-2.27144661-2.27155339z" fill="#222" fill-rule="evenodd"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg"><path d="m6 0c3.3137085 0 6 2.6862915 6 6s-2.6862915 6-6 6-6-2.6862915-6-6 2.6862915-6 6-6zm-2.3406945 2.96359116c-.19486814-.13499605-.46429254-.1157109-.63785889.05785545-.19526215.19526215-.19526215.51184463 0 .70710678l2.27155339 2.27144661-2.20567981 2.20557302-.05785545.06924789c-.13499605.19486814-.1157109.46429254.05785545.6378589.19526215.19526214.51184464.19526214.70710679 0l2.20557302-2.20567981 2.20557302 2.20567981.06924789.05785545c.19486814.13499605.46429254.1157109.6378589-.05785545.19526214-.19526215.19526214-.51184464 0-.70710679l-2.20567981-2.20557302 2.27155339-2.27144661.05785545-.06924789c.13499605-.19486814.1157109-.46429254-.05785545-.63785889-.19526215-.19526215-.51184463-.19526215-.70710678 0l-2.27144661 2.27155339-2.27144661-2.27155339z" fill="#fff" fill-rule="evenodd"/></svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<svg
|
2
|
+
width="18"
|
3
|
+
height="18"
|
4
|
+
viewBox="0 0 18 18"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="fullscreenTitleID fullscreenDescID"
|
8
|
+
>
|
9
|
+
<title id="fullscreenTitleID">Fullscreen</title>
|
10
|
+
<desc id="fullscreenDescID">An illustration of a square</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd" stroke="#fff" stroke-linejoin="round" stroke-width="1.5">
|
12
|
+
<path d="m12 1h5v5" />
|
13
|
+
<path d="m12 12h5v5" transform="matrix(1 0 0 -1 0 29)" />
|
14
|
+
<path d="m1 1h5v5" transform="matrix(-1 0 0 1 7 0)" />
|
15
|
+
<path d="m1 12h5v5" transform="matrix(-1 0 0 -1 7 29)" />
|
16
|
+
</g>
|
17
|
+
</svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<svg
|
2
|
+
width="18"
|
3
|
+
height="18"
|
4
|
+
viewBox="0 0 18 18"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="fullscreen-exitTitleID fullscreen-exitDescID"
|
8
|
+
>
|
9
|
+
<title id="fullscreen-exitTitleID">Exit fullscreen</title>
|
10
|
+
<desc id="fullscreen-exitDescID">An illustration of a crosshair</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd" stroke="#fff" stroke-linejoin="round" stroke-width="1.5">
|
12
|
+
<path d="m12 1h5v5" transform="matrix(-1 0 0 -1 29 7)" />
|
13
|
+
<path d="m12 12h5v5" transform="matrix(-1 0 0 1 29 0)" />
|
14
|
+
<path d="m1 1h5v5" transform="matrix(1 0 0 -1 0 7)" />
|
15
|
+
<path d="m1 12h5v5" />
|
16
|
+
</g>
|
17
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg
|
2
|
+
width="30px"
|
3
|
+
height="24px"
|
4
|
+
viewBox="0 0 30 24"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="hamburgerTitle hamburgerDescription">
|
8
|
+
<title id="hamburgerTitle">Menu icon</title>
|
9
|
+
<desc id="hamburgerDescription">Three parallel horizontal lines in a vertical column</desc>
|
10
|
+
<g stroke="none" stroke-width="3" fill="none" fill-rule="evenodd" stroke-linecap="round">
|
11
|
+
<path d="M2,2 L28,2" stroke="#fff"></path>
|
12
|
+
<path d="M2,12 L28,12" stroke="#fff"></path>
|
13
|
+
<path d="M2,22 L28,22" stroke="#fff"></path>
|
14
|
+
</g>
|
15
|
+
</svg>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<svg
|
2
|
+
width="12"
|
3
|
+
height="14"
|
4
|
+
viewBox="0 0 12 14"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="leftArrowTitleID leftArrowDescID"
|
8
|
+
>
|
9
|
+
<title id="leftArrowTitleID">Left arrow</title>
|
10
|
+
<desc id="leftArrowDescID">An arrow pointing left</desc>
|
11
|
+
<polygon transform="translate(6.000000, 7.500000) scale(-1, 1) rotate(90.000000) translate(-6.000000, -7.500000) " points="6 2 13 13 -1 13" stroke="none" stroke-width="1" fill-rule="evenodd" fill="#fff"></polygon>
|
12
|
+
</svg>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<svg
|
2
|
+
width="18"
|
3
|
+
height="18"
|
4
|
+
viewBox="0 0 18 18"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="magnify-minusTitleID magnify-minusDescID"
|
8
|
+
>
|
9
|
+
<title id="magnify-minusTitleID">Zoom out</title>
|
10
|
+
<desc id="magnify-minusDescID">An icon of a minus symbol</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd">
|
12
|
+
<circle cx="7" cy="7" r="6" stroke="#fff" stroke-width="2" />
|
13
|
+
<path d="m12 12 4.335213 4.335213" stroke="#fff" stroke-linecap="round" stroke-width="2" />
|
14
|
+
<path d="m10 7.75v-1.5h-6v1.5z" fill="#fff" fill-rule="nonzero" />
|
15
|
+
</g>
|
16
|
+
</svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<svg
|
2
|
+
width="18"
|
3
|
+
height="18"
|
4
|
+
viewBox="0 0 18 18"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="magnify-plusTitleID magnify-plusDescID"
|
8
|
+
>
|
9
|
+
<title id="magnify-plusTitleID">Zoom in</title>
|
10
|
+
<desc id="magnify-plusDescID">An icon of a plus symbol</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd">
|
12
|
+
<circle cx="7" cy="7" r="6" stroke="#fff" stroke-width="2" />
|
13
|
+
<path d="m12 12 4.335213 4.335213" stroke="#fff" stroke-linecap="round" stroke-width="2" />
|
14
|
+
<path d="m7.75 4v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25v-2.25z" fill="#fff" fill-rule="nonzero" />
|
15
|
+
</g>
|
16
|
+
|
17
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg
|
2
|
+
width="17"
|
3
|
+
height="17"
|
4
|
+
viewBox="0 0 17 17"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="magnifyTitleID magnifyDescID"
|
8
|
+
>
|
9
|
+
<title>Magnifying glass</title>
|
10
|
+
<desc>An icon of a magnifying glass</desc>
|
11
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<circle stroke="#fff" stroke-width="2" cx="6.12427268" cy="7.12454189" r="5"></circle>
|
13
|
+
<line x1="10.9914602" y1="11.5959661" x2="15.3266728" y2="15.9311788" stroke="#fff" stroke-width="2" stroke-linecap="square"></line>
|
14
|
+
</g>
|
15
|
+
</svg>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<svg
|
2
|
+
width="40"
|
3
|
+
height="40"
|
4
|
+
viewBox="0 0 40 40"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="pauseTitleID pauseDescID"
|
8
|
+
>
|
9
|
+
<title id="pauseTitleID">Pause button</title>
|
10
|
+
<desc id="pauseDescID">A circle with two rectangles in its center</desc>
|
11
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(-141.000000, -5.000000)">
|
13
|
+
<g transform="translate(56.922243, 5.000000)">
|
14
|
+
<g transform="translate(84.000000, 0.000000)">
|
15
|
+
<circle fill="#fff" cx="20" cy="20" r="20"></circle>
|
16
|
+
<g transform="translate(14.666667, 12.000000)" fill="#333">
|
17
|
+
<path d="M10.6666667,0 L10.6666667,16.6666667 L6.66666667,16.6666667 L6.66666667,0 L10.6666667,0 Z M4,0 L4,16.6666667 L0,16.6666667 L0,0 L4,0 Z"></path>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</g>
|
23
|
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<svg
|
2
|
+
width="40"
|
3
|
+
height="40"
|
4
|
+
viewBox="0 0 40 40"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="playTitleID playDescID"
|
8
|
+
>
|
9
|
+
<title id="playTitleID">Play button</title>
|
10
|
+
<desc id="playDescID">A circle with a triangle in its center</desc>
|
11
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(-141.000000, -5.000000)">
|
13
|
+
<g transform="translate(56.922243, 5.000000)">
|
14
|
+
<g transform="translate(84.000000, 0.000000)">
|
15
|
+
<circle fill="#fff" cx="20" cy="20" r="20"></circle>
|
16
|
+
<g transform="translate(14.666667, 12.000000)"></g>
|
17
|
+
<polygon fill="#333" transform="translate(23.000000, 20.333333) rotate(90.000000) translate(-23.000000, -20.333333) " points="23 12 31.3333333 28.6666667 14.6666667 28.6666667"></polygon>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
<svg
|
2
|
+
width="24"
|
3
|
+
height="32"
|
4
|
+
viewBox="0 0 24 32"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="playbackSpeedTitleID playbackSpeedDescID"
|
8
|
+
>
|
9
|
+
<title>Playback speed</title>
|
10
|
+
<desc>An illustration of a speedometer</desc>
|
11
|
+
<g stroke="#fff" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(-56.000000, -14.000000)">
|
13
|
+
<g transform="translate(56.922243, 5.000000)">
|
14
|
+
<g transform="translate(0.000000, 4.000000)">
|
15
|
+
<g transform="translate(0.000000, 5.000000)">
|
16
|
+
<g transform="translate(1.000000, 1.000000)">
|
17
|
+
<g transform="translate(2.000000, 2.521739)" stroke-linecap="round">
|
18
|
+
<line x1="8.5" y1="9.97826087" x2="15.5" y2="2.97826087" transform="translate(12.000000, 6.478261) rotate(180.000000) translate(-12.000000, -6.478261) "></line>
|
19
|
+
<line x1="15.5" y1="11.2695652" x2="15.5" y2="8.26956522" transform="translate(15.500000, 9.769565) rotate(90.000000) translate(-15.500000, -9.769565) "></line>
|
20
|
+
<line x1="16.1555266" y1="5.77496471" x2="16.1480288" y2="4.77499282" transform="translate(16.151778, 5.274979) rotate(240.000000) translate(-16.151778, -5.274979) "></line>
|
21
|
+
<line x1="12.9236091" y1="2.48093451" x2="12.9161756" y2="1.48096213" transform="translate(12.919892, 1.980948) rotate(210.000000) translate(-12.919892, -1.980948) "></line>
|
22
|
+
<line x1="8.5" y1="3.47826087" x2="8.5" y2="0.47826087" transform="translate(8.500000, 1.978261) rotate(180.000000) translate(-8.500000, -1.978261) "></line>
|
23
|
+
<line x1="4.07639089" y1="2.48093451" x2="4.08382438" y2="1.48096213" transform="translate(4.080108, 1.980948) rotate(150.000000) translate(-4.080108, -1.980948) "></line>
|
24
|
+
<line x1="0.844473378" y1="5.77496471" x2="0.851971223" y2="4.77499282" transform="translate(0.848222, 5.274979) rotate(120.000000) translate(-0.848222, -5.274979) "></line>
|
25
|
+
<line x1="1.5" y1="11.2695652" x2="1.5" y2="8.26956522" transform="translate(1.500000, 9.769565) rotate(90.000000) translate(-1.500000, -9.769565) "></line>
|
26
|
+
</g>
|
27
|
+
<path d="M10.5,14.9867607 C22.0227273,14.9867607 20.9752066,15.5091468 20.9752066,9.99117383 C20.9752066,4.47320089 16.2852969,0 10.5,0 C4.71470314,0 0.0247933884,4.47320089 0.0247933884,9.99117383 C0.0247933884,15.5091468 -1.02272727,14.9867607 10.5,14.9867607 Z" stroke-width="2"></path>
|
28
|
+
</g>
|
29
|
+
</g>
|
30
|
+
</g>
|
31
|
+
</g>
|
32
|
+
</g>
|
33
|
+
</g>
|
34
|
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<svg
|
2
|
+
width="20"
|
3
|
+
height="16"
|
4
|
+
viewBox="0 0 20 16"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="readAloudTitleID readAloudDescriptionID"
|
8
|
+
>
|
9
|
+
<title id="readAloudTitleID">Read aloud</title>
|
10
|
+
<desc id="readAloudDescriptionID">An illustration of headphones</desc>
|
11
|
+
<g transform="translate(-212.000000, -9.000000)" fill="#fff" stroke="none" stroke-width="1" fill-rule="evenodd">
|
12
|
+
<g transform="translate(146.000000, 0.000000)">
|
13
|
+
<g transform="translate(66.000000, 8.000000)">
|
14
|
+
<g transform="translate(10.000000, 8.200000) scale(-1, 1) rotate(-180.000000) translate(-10.000000, -8.200000) translate(0.000000, 0.200000)">
|
15
|
+
<polygon points="16.2 0 14.4 0 14.4 7 16.2 7"></polygon>
|
16
|
+
<path d="M9.98959325,15.0773216 C5.35414621,15.0773216 1.60303519,11.0610721 1.37018967,6.70460125 C0.697018953,6.32363105 0.0526829255,5.65267504 0.069376692,3.64950913 C0.10428184,-0.512919136 3.2882384,0.0489418427 3.2882384,0.0489418427 L3.2882384,6.93853032 C3.2882384,6.93853032 3.23533867,6.95081968 3.14428176,6.96138422 C3.40964761,10.550309 6.71913262,13.0575543 9.98959325,13.1368961 C13.1681298,13.2140819 16.6020592,10.5522494 16.8691595,6.96504947 C16.7575064,6.95383812 16.6909481,6.93853032 16.6909481,6.93853032 L16.6909481,0.0489418427 C16.6909481,0.0489418427 19.8749047,-0.512919136 19.909593,3.64950913 C19.92607,5.61688497 19.304715,6.29150623 18.644986,6.68368778 C18.4227638,11.0500763 14.6766392,15.0773216 9.98959325,15.0773216 Z"></path>
|
17
|
+
<polygon points="3.8 0 5.6 0 5.6 7 3.8 7"></polygon>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<svg
|
2
|
+
width="21"
|
3
|
+
height="19"
|
4
|
+
viewBox="0 0 21 19"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="reviewTitleID reviewDescID"
|
8
|
+
>
|
9
|
+
<title id="reviewTitleID">Review</title>
|
10
|
+
<desc id="reviewDescID">An arrow pointing in a backward direction</desc>
|
11
|
+
<g transform="translate(-100.000000, -15.000000)" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(56.922243, 5.000000)">
|
13
|
+
<g transform="translate(43.000000, 10.000000)">
|
14
|
+
<polyline stroke="#fff" stroke-width="2" stroke-linejoin="round" points="14.4444444 16.6666667 20 16.6666667 20 3.33333333 5.55555556 3.33333333"></polyline>
|
15
|
+
<polygon fill="#fff" points="5.55555556 0 5.55555556 6.66666667 1.11111111 3.33333333"></polygon>
|
16
|
+
<text font-family="HelveticaNeue, Helvetica Neue, sans-serif" font-size="10" font-weight="normal" fill="#fff">
|
17
|
+
<tspan x="0" y="17.3333333">10</tspan>
|
18
|
+
</text>
|
19
|
+
</g>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<svg
|
2
|
+
width="17"
|
3
|
+
height="19"
|
4
|
+
viewBox="0 0 17 19"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="thumbnailTitleID thumbnailDescID"
|
8
|
+
>
|
9
|
+
<title id="thumbnailTitleID">Thumbnails</title>
|
10
|
+
<desc id="thumbnailDescID">An illustration of a grid of two squares per row and two squares per column</desc>
|
11
|
+
<g fill="none" fill-rule="evenodd" stroke="#fff" stroke-width="1.5">
|
12
|
+
<rect height="7.25" rx="1" width="6" x="1.25" y=".75" />
|
13
|
+
<rect height="7.25" rx="1" width="6" x="1.25" y="10.75" />
|
14
|
+
<rect height="7.25" rx="1" width="6" x="10" y=".75" />
|
15
|
+
<rect height="7.25" rx="1" width="6" x="10" y="10.75" />
|
16
|
+
</g>
|
17
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg height="100" viewBox="0 0 100 100" width="100" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="nonzero"><path d="m38.1709541 1.16927276c-19.3063792 2.35749181-30.77194642 17.49896974-28.52613175 35.69759164l.13778264.9919913c1.32289251 8.56612 5.97731071 16.3013047 12.66398421 21.5397034l.4377858.3337777-.8258922.2818912c-14.58776328 5.1516606-22.0584828 17.3847028-22.0584828 36.1118649 0 1.7258899 1.39911016 3.125 3.125 3.125h75c1.7258898 0 3.125-1.3991101 3.125-3.125l-.0091512-1.1274701c-.2805982-17.166151-7.012296-28.729242-19.9504605-34.1742942l-.7528883-.3076168.3448755-.2543479c4.6971412-3.6170055 8.2730972-8.807671 10.7017508-15.494037l.1033476-.3442854c.358088-1.4990563-.4382762-3.0639387-1.9085796-3.6353549l-12.6163943-2.9594748 15.5382502-5.2151308c1.4455508-.7155993 2.1089731-2.4138059 1.5313094-3.9197953l-.4286041-1.1171368c-7.4117992-18.89492742-19.4315183-27.95356137-35.6325014-26.40787614zm29.1727959 27.11931404-14.3051523 7.0850707-.3458164.1975825c-2.0674045 1.3537943-1.8055096 4.5808459.6002149 5.5158026l11.2601288 4.3765442-.0446544.1053935c-2.9998765 6.5205267-7.382434 10.7639749-13.2036694 12.8974938-2.9669838 1.087418-2.6299355 5.3880614.4702287 5.9999873l.9102021.1897523c14.1147108 3.1023497 21.4110943 12.2993394 22.233518 28.3448731h-68.59375l.06180046-.9883469c1.14099717-16.5385163 9.43185134-25.5919672 25.33818054-27.9334892 3.1343099-.4613921 3.6716909-4.7565726.7476649-5.9759387-8.9190789-3.7193999-15.42583-12.285691-16.6248777-22.0019293-1.8277808-14.8111472 7.2466638-26.79489813 22.9989376-28.71929813 12.5036466-1.191884 21.828781 5.37445053 28.2768952 20.37896473z"/><path d="m76.5037126 22.4247766c.9396111-1.4476971 2.8749067-1.8595821 4.3226037-.9199711 6.1870578 4.0156385 9.4236837 9.4774446 9.4236837 16.1212874s-3.2366259 12.105649-9.4236837 16.1212875c-1.447697.939611-3.3829926.527726-4.3226037-.9199711s-.527726-3.3829927.9199711-4.3226038c4.4796088-2.9074384 6.5763163-6.4456323 6.5763163-10.8787126 0-4.4330802-2.0967075-7.9712741-6.5763163-10.8787125-1.4476971-.9396111-1.8595822-2.8749067-.9199711-4.3226038z"/><path d="m86.6767674 19.1839853c1.0725964-1.3521215 3.0382187-1.5787214 4.3903402-.506125 6.0793735 4.82258 9.1828924 11.2235876 9.1828924 18.9482326 0 7.7246451-3.1035189 14.1256527-9.1828924 18.9482327-1.3521215 1.0725964-3.3177438.8459965-4.3903402-.506125-1.0725964-1.3521216-.8459966-3.3177439.506125-4.3903403 4.5872931-3.6389585 6.8171076-8.2379508 6.8171076-14.0517674 0-5.8138165-2.2298145-10.4128088-6.8171076-14.0517673-1.3521216-1.0725964-1.5787214-3.0382187-.506125-4.3903403z"/></g></svg>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<svg
|
2
|
+
width="23"
|
3
|
+
height="22"
|
4
|
+
viewBox="0 0 23 22"
|
5
|
+
version="1.1"
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
7
|
+
aria-labelledby="volume-fullTitleID volume-fullDescID"
|
8
|
+
>
|
9
|
+
<title>button/volume - full</title>
|
10
|
+
<desc>Created with Sketch.</desc>
|
11
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
12
|
+
<g transform="translate(-241.000000, -14.000000)" stroke="#fff" stroke-width="2">
|
13
|
+
<g transform="translate(56.922243, 5.000000)">
|
14
|
+
<g transform="translate(185.000000, 9.000000)">
|
15
|
+
<path d="M14,3 C16,5.05128205 17,7.71794872 17,11 C17,14.2820513 16,16.9487179 14,19" stroke-linecap="round"></path>
|
16
|
+
<path d="M18,1 C20,3.56410256 21,6.8974359 21,11 C21,15.1025641 20,18.4358974 18,21" stroke-linecap="round"></path>
|
17
|
+
<polygon fill="#fff" fill-rule="evenodd" stroke-linejoin="round" points="10 3.5 6 7.30952381 1 7.30952381 1 15.6904762 6 15.6904762 10 19.5"></polygon>
|
18
|
+
</g>
|
19
|
+
</g>
|
20
|
+
</g>
|
21
|
+
</g>
|
22
|
+
</svg>
|
Binary file
|