smart-helpdesk-plugin
v1.0.39
Published
A simple customizable text component for React helpdesk applications
Maintainers
Readme
SCSS Styling
The component comes with built-in SCSS styling. Just import the CSS file:
import SmartHelpdeskText from "smart-helpdesk-plugin";
import "smart-helpdesk-plugin/dist/styles.css";
function App() {
return (
<SmartHelpdeskText
text="Welcome to our helpdesk"
color="primary"
size="xl"
weight="bold"
/>
);
}