yt-custom-player
Version:
> A library for styling and customizing the YouTube player in React.
26 lines (22 loc) • 1.18 kB
JavaScript
import React from 'react';
import './styles.css';
const LiveIndicator = () => {
return (
<svg
fill="#ffffff"
width="52"
height="40"
viewBox="0 0 32 32"
stroke="#000000"
strokeWidth="0.00032"
>
<g transform="matrix(1.7004767, 0, 0, 1.689478, -20.799979, -10.941453)">
<path
d="m 25.207568,13.759217 h 2.869 v 0.698048 h -2.076 v 1.200153 h 1.963 v 0.658246 h -1.963 v 1.266488 h 2.076 v 0.70111 h -2.869 z m -4.760999,-0.0031 h 0.877 l 1.115999,3.581068 h 0.053 l 1.107,-3.581068 h 0.844 l -1.534,4.523024 h -0.915 z m -1.554,0 h 0.794 v 4.523024 h -0.794 z m -3.681,0 h 0.794 v 3.816812 h 2.034 v 0.707 h -2.828 z M -1.5089824,10.671472 c 1.52155258,-10.98037066 1.52155258,-10.98037066 0,0 z m 14.3695514,0.0057 h -10e-4 c -0.318,0 -0.576,0.263298 -0.576,0.587829 v 10e-4 0 9.503249 0.001 c 0,0.324531 0.258,0.58783 0.576,0.58783 h 10e-4 l 17.569999,0.0031 h 10e-4 c 0.318,0 0.576,-0.263299 0.576,-0.58783 v -0.001 0 -9.506311 -10e-4 c 0,-0.324531 -0.258,-0.587829 -0.576,-0.587829 h -10e-4 v 0 z"
strokeWidth="0.000323269"
/>
</g>
</svg>
)
};
export default LiveIndicator;