@onesy/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 611 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@onesy/ui-react';
const IconMaterialPlayPause = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "PlayPause",
short_name: "PlayPause",
viewBox: "0 -960 960 960"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M200-312v-336l240 168-240 168Zm320-8v-320h80v320h-80Zm160 0v-320h80v320h-80Z"
}));
});
IconMaterialPlayPause.displayName = 'OnesyIconMaterialPlayPause';
export default IconMaterialPlayPause;