@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
21 lines • 620 B
JavaScript
import React from 'react';
import { propTypes } from "./props/propTypes";
import style from "../../../list/BluePrintStatus/BluePrintStatus.module.css";
import { Icon } from '@zohodesk/icons';
export default function BluePrintStatus(props) {
let {
title
} = 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'
// };
// }