8 lines
344 B
JavaScript
8 lines
344 B
JavaScript
import React from 'react';
|
|
import createSvgIcon from './utils/createSvgIcon';
|
|
export default createSvgIcon(React.createElement(React.Fragment, null, React.createElement("path", {
|
|
d: "M10 8.64v6.72L15.27 12z",
|
|
opacity: ".3"
|
|
}), React.createElement("path", {
|
|
d: "M8 19l11-7L8 5v14zm2-10.36L15.27 12 10 15.36V8.64z"
|
|
})), 'PlayArrowTwoTone'); |