New to KendoReactLearn about KendoReact Free.

Getting Started with the KendoReact Common Utilities

Updated on Mar 4, 2026

This guide provides essential information about using the KendoReact Common Utilities package—you will learn how to install the package and add free Common Utilities to your project. The steps demonstrated in this guide are applicable to all KendoReact Common Utilities (free and premium).

Change Theme
Theme
Loading ...

Install the Components

sh
npm i @progress/kendo-react-common

Import the Components

tsx
import { SvgIcon } from '@progress/kendo-react-common';
import { paletteIcon } from '@progress/kendo-svg-icons';

Place the import statements in the App component file (for example: src/App.tsx) for your project. Note that the steps for installing and importing all Common Utilities components are identical.

Use the Components

Using the free KendoReact Common Utilities components does not require a license, even in production. To work with the premium Draggable utility, you need a commercial license key or an active trial license key.

  1. After installing the Common Utilities package and importing the components, add the Icon's tags to the App component file of your React project (for example, src/App.tsx).

    tsx
    <SvgIcon icon={paletteIcon} size="xlarge" />

Style the Components

Are you looking for guidance around how to create visually appealing and consistent user interfaces with Telerik UI components? Check out the Progress Design System.

To use the built-in styling of the components start by installing a theme:

sh
npm i @progress/kendo-theme-default

With the import "@progress/kendo-theme-default/dist/all.css"; statement present in your code, you already have professionally designed styling applied to your app out-of-box. You can also try any of the other available Kendo UI Themes.

Additionally, the SvgIcons provide built-in appearance properties which let you control the size, flip, and theme color of the component. Try to play around with the appearance of your SvgIcon.

tsx
<SvgIcon icon={paletteIcon} size="xlarge" themeColor="primary" />

Next Steps

Now try to add another component from the Common Utilities package yourself. The procedures for installing and importing the Common Utilities components are identical for all components in the package.

The Common Utilities package provides the following components:

KendoReact Common Utilities APIs

Common Utilities API

Common Utilities Dependencies

The Common Utilities package requires you to install the following peer dependencies in your application:

Package NameDescription
react 18.0.0*Contains the functionality necessary to define React components.
react-domContains the React renderer for the web.
@progress/kendo-licensingContains the internal infrastructure related to licensing.
@progress/kendo-svg-iconsContains the KendoReact SVG icons.

Activating Your License Key

Important: The KendoReact Common Utilities have both free and premium features that require a license key file to be installed in your project. This applies to both trial and commercial usage:

Without a valid license key file, the premium features will display licensing warnings and watermarks.

Follow the instructions on the KendoReact My License page to download and install your license key file. You can skip this step if your application already contains a KendoReact license file.