lucid-ui
Version:
A UI component library from AppNexus.
18 lines • 513 B
JavaScript
import React from 'react';
import createClass from 'create-react-class';
import { BarChartLoadingSkeleton } from '../../../../index';
export default createClass({
render: function render() {
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(BarChartLoadingSkeleton, {
isLoading: true,
width: 210,
height: 200,
numRows: 2,
numColumns: 3,
marginRight: 100,
marginLeft: 0,
marginTop: 0,
marginBottom: 50
}));
}
});