lucid-ui
Version:
A UI component library from AppNexus.
30 lines • 2.27 kB
JavaScript
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importDefault(require("react"));
var create_react_class_1 = __importDefault(require("create-react-class"));
var index_1 = require("../../../index");
var style = { display: 'inline-block', marginRight: '10px' };
exports.default = create_react_class_1.default({
render: function () {
return (react_1.default.createElement("div", null,
react_1.default.createElement("div", null,
react_1.default.createElement(index_1.NotchedTag, { style: style }, "ADV"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', style: style }, "ADV"),
react_1.default.createElement(index_1.NotchedTag, { type: 'filled', style: style }, "ADV"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', type: 'filled', style: style }, "ADV")),
react_1.default.createElement("div", null,
react_1.default.createElement(index_1.NotchedTag, { tagStyle: 'style-two', style: style }, "IO"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', tagStyle: 'style-two', style: style }, "IO"),
react_1.default.createElement(index_1.NotchedTag, { tagStyle: 'style-two', type: 'filled', style: style }, "IO"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', tagStyle: 'style-two', type: 'filled', style: style }, "IO")),
react_1.default.createElement("div", null,
react_1.default.createElement(index_1.NotchedTag, { tagStyle: 'style-three', style: style }, "LI"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', tagStyle: 'style-three', style: style }, "LI"),
react_1.default.createElement(index_1.NotchedTag, { tagStyle: 'style-three', type: 'filled', style: style }, "LI"),
react_1.default.createElement(index_1.NotchedTag, { size: 'small', tagStyle: 'style-three', type: 'filled', style: style }, "LI"))));
},
});
//# sourceMappingURL=basic.js.map