media-stream-player
Version:
Player built on top of media-stream-library
8 lines • 466 B
JavaScript
import React from 'react';
export const Pause = ({ title }) => {
return (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" },
title !== undefined ? React.createElement("title", null, title) : null,
React.createElement("path", { d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" }),
React.createElement("path", { d: "M0 0h24v24H0z", fill: "none" })));
};
//# sourceMappingURL=Pause.js.map