
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@telerik/kendo-react-buttons
Advanced tools
This repository contains the source code and documentation of the Kendo UI components for React.
The package includes the Button and ButtonGroup components.
For more information on forthcoming Buttons package features and components, refer to the Roadmap.
The Button allows users to achieve a UI functionality by clicking on it.
<div id="app"></div>
class ButtonContainer extends React.Component {
onClick = () => {
//handle event
}
render() {
return (
<div>
<KendoReactButtons.Button onClick={this.onClick}>My Button</KendoReactButtons.Button>
</div>
);
}
}
ReactDOM.render(
<ButtonContainer />,
document.getElementById('app')
);
For more examples and available configuration options, refer to the Button documentation section.
The ButtonGroup is a group of more than one Kendo UI Buttons for React.
<div id="app"></div>
ReactDOM.render(
<KendoReactButtons.ButtonGroup>
<KendoReactButtons.Button>Button 1</KendoReactButtons.Button>
<KendoReactButtons.Button>Button 2</KendoReactButtons.Button>
<KendoReactButtons.Button>Button 3</KendoReactButtons.Button>
</KendoReactButtons.ButtonGroup>,
document.getElementById('app')
);
For more examples and available configuration options, refer to the ButtonGroup documentation section.
The React Buttons are published as a public scoped NPM package in the Telerik organization in http://npmjs.org/.
Install it using NPM:
npm install --save @telerik/kendo-react-buttons;
Once installed, import the module:
// ES2015 module syntax
import * as KendoReactButtons from 'kendo-react-buttons';
// CommonJS format
var Button = require('kendo-react-buttons').Button;
var ButtonGroup = require('kendo-react-buttons').ButtonGroup;
The Kendo UI Buttons components for React support all browsers that are supported by the React framework—Internet Explorer 9 and later versions.
Below are explained the basic terms that Kendo UI suite for React applies.
A Component refers to a React Component.
A package contains one or more components, developed in a single repository and distributed in a single NPM package. For example, the Kendo UI Button and ButtonGroup components for React are part of the Buttons Package.
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.