styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.17 kB
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.Dice = 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: "M13.5 3h-8A2.507 2.507 0 003 5.5v8C3 14.875 4.125 16 5.5 16h8c1.375 0 2.5-1.125 2.5-2.5v-8C16 4.125 14.875 3 13.5 3zm-7 11a1.5 1.5 0 11.001-3.001A1.5 1.5 0 016.5 14zm0-6a1.5 1.5 0 11.001-3.001A1.5 1.5 0 016.5 8zm3 3a1.5 1.5 0 11.001-3.001A1.5 1.5 0 019.5 11zm3 3a1.5 1.5 0 11.001-3.001A1.5 1.5 0 0112.5 14zm0-6a1.5 1.5 0 11.001-3.001A1.5 1.5 0 0112.5 8zm.449-6A2.509 2.509 0 0010.5 0h-8A2.507 2.507 0 000 2.5v8c0 1.204.862 2.216 2 2.449V3c0-.55.45-1 1-1h9.949z", key: "k0" })));
});
exports.Dice.displayName = 'Dice';
exports.DiceDimensions = { height: 16, width: 16 };
;