9 lines
412 B
JavaScript
9 lines
412 B
JavaScript
import React from 'react';
|
|
import createSvgIcon from './utils/createSvgIcon';
|
|
export default createSvgIcon(React.createElement(React.Fragment, null, React.createElement("path", {
|
|
fill: "none",
|
|
d: "M24 0v24H0V0h24z",
|
|
opacity: ".87"
|
|
}), React.createElement("path", {
|
|
d: "M12.29 8.71L9.7 11.3c-.39.39-.39 1.02 0 1.41l2.59 2.59c.63.63 1.71.18 1.71-.71V9.41c0-.89-1.08-1.33-1.71-.7z"
|
|
})), 'ArrowLeftRounded'); |