styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 817 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Code = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M8.171 18a1.992 1.992 0 01-1.414-.586L2.343 13l4.414-4.414a2 2 0 112.828 2.828L8 13l1.585 1.586A2 2 0 018.171 18zm7.658 0a2 2 0 01-1.414-3.414L16 13l-1.585-1.586a2 2 0 112.828-2.828L21.657 13l-4.414 4.414a1.99 1.99 0 01-1.414.586z", key: "k0" })));
});
Code.displayName = 'Code';
export var CodeDimensions = { height: 24, width: 24 };