12 lines
750 B
JavaScript
12 lines
750 B
JavaScript
import React from 'react';
|
|
import createSvgIcon from './utils/createSvgIcon';
|
|
export default createSvgIcon(React.createElement(React.Fragment, null, React.createElement("g", {
|
|
fill: "none"
|
|
}, React.createElement("path", {
|
|
d: "M0 0h24v24H0V0z"
|
|
}), React.createElement("path", {
|
|
d: "M0 0h24v24H0V0z",
|
|
opacity: ".87"
|
|
})), React.createElement("path", {
|
|
d: "M21 3.01H3c-1.1 0-2 .9-2 2V8c0 .55.45 1 1 1s1-.45 1-1V5.99c0-.55.45-1 1-1h16c.55 0 1 .45 1 1v12.03c0 .55-.45 1-1 1H4c-.55 0-1-.45-1-1V16c0-.55-.45-1-1-1s-1 .45-1 1v3.01c0 1.09.89 1.98 1.98 1.98H21c1.1 0 2-.9 2-2V5.01c0-1.1-.9-2-2-2zm-9.15 12.14l2.79-2.79c.2-.2.2-.51 0-.71l-2.79-2.79c-.31-.32-.85-.1-.85.35V11H2c-.55 0-1 .45-1 1s.45 1 1 1h9v1.79c0 .45.54.67.85.36z"
|
|
})), 'InputRounded'); |