sebikostudio-icons
Version:
A collection of icon components
30 lines • 1.42 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const VideoIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "video, play, youtube, video start",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10 3.5C6.162 3.5 3.89291 3.84864 2.67806 4.13421C1.94061 4.30756 1.5 4.97799 1.5 5.73553V10V14.2645C1.5 15.022 1.94061 15.6924 2.67806 15.8658C3.89291 16.1514 6.162 16.5 10 16.5C13.838 16.5 16.1071 16.1514 17.3219 15.8658C18.0594 15.6924 18.5 15.022 18.5 14.2645V10V5.73554C18.5 4.97799 18.0594 4.30756 17.3219 4.13421C16.1071 3.84864 13.838 3.5 10 3.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.5 13.5V6.5L14 10L7.5 13.5Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default VideoIcon;