styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 674 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Tab = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M15 0h1v8h-1V0zM0 8h1v8H0V8zM5 11h11v2H5v2.5L1.5 12 5 8.5V11zM11 5H0V3h11V.5L14.5 4 11 7.5z", key: "k0" })));
});
Tab.displayName = 'Tab';
export var TabDimensions = { height: 16, width: 16 };