A simple customizable text component for React helpdesk applications
npm install smart-helpdesk-pluginThe component comes with built-in SCSS styling. Just import the CSS file:
``jsx
import SmartHelpdeskText from "smart-helpdesk-plugin";
import "smart-helpdesk-plugin/dist/styles.css";
function App() {
return (
color="primary"
size="xl"
weight="bold"
/>
);
}
``