@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
9 lines (8 loc) • 362 B
TypeScript
export type NoDataProps = React.HTMLAttributes<HTMLSpanElement> & {
/**
* When true, adds aria-live="polite" for screen reader announcements.
* @aria aria-live="polite" - Announces content changes to assistive technologies
*/
live?: boolean;
};
export declare const NoData: (props: NoDataProps) => import("react/jsx-runtime").JSX.Element;