@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
28 lines (26 loc) • 695 B
JavaScript
import React from 'react';
import { propTypes } from "./props/propTypes";
import style from "./BluePrintStatus.module.css";
import { Icon } from '@zohodesk/icons';
export default class BluePrintStatus extends React.Component {
constructor(props) {
super(props);
}
render() {
let {
title
} = this.props;
return /*#__PURE__*/React.createElement("span", {
className: `${style.container}`
}, /*#__PURE__*/React.createElement(Icon, {
name: "ZD-blueprint",
title: title,
iconClass: style.iconStyle
}));
}
}
BluePrintStatus.propTypes = propTypes; // if (__DOCS__) {
// BluePrintStatus.docs = {
// componentGroup: 'Atom'
// };
// }