@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 989 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Tabs = /*#__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: "M2 9.25C2 5.25 5.25 2 9.25 2h3.5c1.35 0 2.51.83 3 2h-5.5A6.25 6.25 0 0 0 4 10.25v5.5a3.25 3.25 0 0 1-2-3v-3.5Zm3 1C5 7.35 7.35 5 10.25 5h5.5c1.35 0 2.51.83 3 2h-7.5A4.25 4.25 0 0 0 7 11.25v7.5a3.25 3.25 0 0 1-2-3v-5.5ZM11.25 8A3.25 3.25 0 0 0 8 11.25v7.5C8 20.55 9.46 22 11.25 22h7.5c1.8 0 3.25-1.46 3.25-3.25v-7.5C22 9.45 20.54 8 18.75 8h-7.5Z"
}));
});
Tabs.displayName = 'Tabs';
export var TabsDimensions = {
height: 24,
width: 24
};