9 lines
535 B
JavaScript
9 lines
535 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: "M0 0h24v24H0V0z",
|
|
opacity: ".87"
|
|
}), React.createElement("path", {
|
|
d: "M6.29 8.11L10.18 12l-3.89 3.89c-.39.39-.39 1.02 0 1.41.39.39 1.02.39 1.41 0l4.59-4.59c.39-.39.39-1.02 0-1.41L7.7 6.7a.9959.9959 0 00-1.41 0c-.38.39-.38 1.03 0 1.41zM17 6c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1s-1-.45-1-1V7c0-.55.45-1 1-1z"
|
|
})), 'LastPageRounded'); |