media-stream-player
Version:
Player built on top of media-stream-library
9 lines • 671 B
JavaScript
import React from 'react';
export const Screenshot = ({ 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: "M0 0h24v24H0z", fill: "none" }),
React.createElement("circle", { cx: "12", cy: "12", r: "3.2" }),
React.createElement("path", { d: "M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" })));
};
//# sourceMappingURL=Screenshot.js.map