UNPKG

@progress/kendo-react-layout

Version:

React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package

18 lines (17 loc) 697 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as t from "react"; import r from "prop-types"; import { classNames as s } from "@progress/kendo-react-common"; const a = (e) => /* @__PURE__ */ t.createElement("div", { style: e.style, className: s("k-card-title", e.className) }, e.children); a.propTypes = { className: r.string }; export { a as CardTitle };