apm-react-audio-player 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +16 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -212,8 +212,14 @@ var Play = function Play() {
|
|
|
212
212
|
className: "play",
|
|
213
213
|
height: "1em",
|
|
214
214
|
width: "1em",
|
|
215
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
216
|
-
|
|
215
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
216
|
+
role: "img",
|
|
217
|
+
"aria-labelledby": "play playButton"
|
|
218
|
+
}, /*#__PURE__*/React__default.createElement("title", {
|
|
219
|
+
id: "play"
|
|
220
|
+
}, "Play"), /*#__PURE__*/React__default.createElement("desc", {
|
|
221
|
+
id: "playButton"
|
|
222
|
+
}, "Play Button"), /*#__PURE__*/React__default.createElement("path", {
|
|
217
223
|
d: "M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"
|
|
218
224
|
}));
|
|
219
225
|
};
|
|
@@ -226,8 +232,14 @@ var Pause = function Pause() {
|
|
|
226
232
|
viewBox: "0 0 448 512",
|
|
227
233
|
height: "1em",
|
|
228
234
|
width: "1em",
|
|
229
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
230
|
-
|
|
235
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
236
|
+
role: "img",
|
|
237
|
+
"aria-labelledby": "pause pauseButton"
|
|
238
|
+
}, /*#__PURE__*/React__default.createElement("title", {
|
|
239
|
+
id: "pause"
|
|
240
|
+
}, "Pause"), /*#__PURE__*/React__default.createElement("desc", {
|
|
241
|
+
id: "pauseButton"
|
|
242
|
+
}, "Pause Button"), /*#__PURE__*/React__default.createElement("path", {
|
|
231
243
|
d: "M144 479H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v352c0 26.5-21.5 48-48 48zm304-48V79c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48v352c0 26.5 21.5 48 48 48h96c26.5 0 48-21.5 48-48z"
|
|
232
244
|
}));
|
|
233
245
|
};
|