@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
12 lines • 363 B
JavaScript
import React from 'react';
import { propTypes } from "./props/propTypes";
import style from "../../../../setup/helptips/Description/HelpTipsDescription.module.css";
export default function Description(props) {
let {
text
} = props;
return /*#__PURE__*/React.createElement("p", {
className: style.text
}, text);
}
Description.propTypes = propTypes;