styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 910 B
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.AddressBook = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M3 0v16h12V0H3zm6 4.005a1.995 1.995 0 110 3.99 1.995 1.995 0 010-3.99zM12 12H6v-1a2 2 0 012-2h2a2 2 0 012 2v1zM1 1h1.5v3H1V1zM1 5h1.5v3H1V5zM1 9h1.5v3H1V9zM1 13h1.5v3H1v-3z", key: "k0" })));
});
exports.AddressBook.displayName = 'AddressBook';
exports.AddressBookDimensions = { height: 16, width: 16 };
;