media-stream-player
Version:
Player built on top of media-stream-library
8 lines • 446 B
JavaScript
import React from 'react';
export const Stop = ({ 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("path", { d: "M6 6h12v12H6z" })));
};
//# sourceMappingURL=Stop.js.map