@geezee/react-ui
Version:
Modern and minimalist React UI library.
22 lines (20 loc) • 721 B
JavaScript
import React from 'react';
var SnippetIcon = function SnippetIcon() {
return /*#__PURE__*/React.createElement("svg", {
viewBox: "0 0 24 24",
width: "22",
height: "22",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
shapeRendering: "geometricPrecision",
style: {
color: 'currentcolor'
}
}, /*#__PURE__*/React.createElement("path", {
d: "M8 17.929H6c-1.105 0-2-.912-2-2.036V5.036C4 3.91 4.895 3 6 3h8c1.105 0 2 .911 2 2.036v1.866m-6 .17h8c1.105 0 2 .91 2 2.035v10.857C20 21.09 19.105 22 18 22h-8c-1.105 0-2-.911-2-2.036V9.107c0-1.124.895-2.036 2-2.036z"
}));
};
export default React.memo(SnippetIcon);