@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 976 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Code = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "m8.09 18.61 6-14a1 1 0 0 1 1.87.67l-.04.11-6 14a1 1 0 0 1-1.87-.67l.04-.1 6-14.01-6 14zm-5.8-7.32 4-4a1 1 0 0 1 1.5 1.32l-.08.1L4.4 12l3.3 3.3a1 1 0 0 1-1.32 1.5l-.1-.1-4-4a1 1 0 0 1-.08-1.31l.08-.1 4-4-4 4zm14-4a1 1 0 0 1 1.32-.08l.1.08 4 4a1 1 0 0 1 .08 1.32l-.08.1-4 4a1 1 0 0 1-1.5-1.33l.08-.1L19.6 12l-3.3-3.3a1 1 0 0 1 0-1.4z"
}));
});
Code.displayName = 'Code';
export var CodeDimensions = {
height: 24,
width: 24
};