UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

20 lines (19 loc) 492 B
import { IgrHeader } from "./igr-header"; import { TextHeader } from "./TextHeader"; /** * Represents a class used to configure the appearance of a text column header cells. */ export class IgrTextHeader extends IgrHeader { createImplementation() { return new TextHeader(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } }