lucid-ui
Version:
A UI component library from Xandr.
28 lines • 1.12 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 TableIcon_1 = require("./TableIcon");
exports.default = {
title: 'Icons/Icons/TableIcon',
component: TableIcon_1.TableIcon,
};
//👇 We create a “template” of how args map to rendering
var Template = function (args) { return react_1.default.createElement(TableIcon_1.TableIcon, __assign({}, args)); };
//👇 Each story then reuses that template
exports.Primary = Template.bind({});
//# sourceMappingURL=TableIcon.stories.js.map