styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.39 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.BrightnessHalf = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M21.707 11.293l-2-2L19 8.586V6a1 1 0 00-1-1h-2.586l-.707-.707-2-2a.999.999 0 00-1.414 0l-2 2L8.586 5H6a1 1 0 00-1 1V8.586l-.707.707-2 2a.999.999 0 000 1.414l2 2 .707.707V18a1 1 0 001 1h2.586l.707.707 2 2a.997.997 0 001.414 0l2-2 .707-.707H18a1 1 0 001-1V15.414l.707-.707 2-2a.999.999 0 000-1.414zm-4.414 3l-.293.293V17h-2.414l-.293.293-1 1L12 19.586l-1.293-1.293-1-1L9.414 17H7v-2.414l-.293-.293-1-1L4.414 12l1.293-1.293 1-1L7 9.414V7h2.414l.293-.293 1-1L12 4.414l1.293 1.293 1 1 .293.293H17v2.414l.293.293 1 1L19.586 12l-1.293 1.293-1 1z", key: "k0" }),
React.createElement("path", { d: "M12 8v8c2.206 0 4-1.794 4-4s-1.794-4-4-4z", key: "k1" })));
});
exports.BrightnessHalf.displayName = 'BrightnessHalf';
exports.BrightnessHalfDimensions = { height: 24, width: 24 };
;