@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 857 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var TextUnderline = /*#__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: "M6 4.5a1 1 0 0 1 2 0v6c0 3.46 1.32 5 4.25 5 2.93 0 4.25-1.54 4.25-5v-6a1 1 0 1 1 2 0v6c0 4.54-2.18 7-6.25 7-4.08 0-6.25-2.46-6.25-7v-6zM7 21a1 1 0 1 1 0-2h10.5a1 1 0 1 1 0 2H7z"
}));
});
TextUnderline.displayName = 'TextUnderline';
export var TextUnderlineDimensions = {
height: 24,
width: 24
};