UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 914 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var BrightnessHalf = 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: "M21.546 11.646L19 9.101V5.5a.5.5 0 00-.5-.5h-3.601l-2.546-2.546a.5.5 0 00-.707 0L9.101 5H5.5a.5.5 0 00-.5.5v3.601l-2.546 2.546a.5.5 0 000 .707L5 14.899V18.5a.5.5 0 00.5.5h3.601l2.546 2.546a.5.5 0 00.707 0L14.899 19H18.5a.5.5 0 00.5-.5v-3.601l2.546-2.546a.5.5 0 000-.707zM12 8a4 4 0 010 8", key: "k0" }))); }); BrightnessHalf.displayName = 'BrightnessHalf'; export var BrightnessHalfDimensions = { height: 24, width: 24 };