lucid-ui
Version:
A UI component library from AppNexus.
56 lines • 1.91 kB
JavaScript
import React from 'react';
import createClass from 'create-react-class';
import { NotchedTag } from '../../../index';
var style = {
display: 'inline-block',
marginRight: '10px'
};
export default createClass({
render: function render() {
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(NotchedTag, {
style: style
}, "ADV"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
style: style
}, "ADV"), /*#__PURE__*/React.createElement(NotchedTag, {
type: "filled",
style: style
}, "ADV"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
type: "filled",
style: style
}, "ADV")), /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(NotchedTag, {
tagStyle: "style-two",
style: style
}, "IO"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
tagStyle: "style-two",
style: style
}, "IO"), /*#__PURE__*/React.createElement(NotchedTag, {
tagStyle: "style-two",
type: "filled",
style: style
}, "IO"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
tagStyle: "style-two",
type: "filled",
style: style
}, "IO")), /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(NotchedTag, {
tagStyle: "style-three",
style: style
}, "LI"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
tagStyle: "style-three",
style: style
}, "LI"), /*#__PURE__*/React.createElement(NotchedTag, {
tagStyle: "style-three",
type: "filled",
style: style
}, "LI"), /*#__PURE__*/React.createElement(NotchedTag, {
size: "small",
tagStyle: "style-three",
type: "filled",
style: style
}, "LI")));
}
});