lucid-ui
Version:
A UI component library from Xandr.
28 lines • 1.15 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Primary = void 0;
var react_1 = __importDefault(require("react"));
var ViewTableIcon_1 = require("./ViewTableIcon");
exports.default = {
title: 'Icons/Icons/ViewTableIcon',
component: ViewTableIcon_1.ViewTableIcon,
};
//👇 We create a “template” of how args map to rendering
var Template = function (args) { return react_1.default.createElement(ViewTableIcon_1.ViewTableIcon, __assign({}, args)); };
//👇 Each story then reuses that template
exports.Primary = Template.bind({});
//# sourceMappingURL=ViewTableIcon.stories.js.map