@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
24 lines (23 loc) • 970 B
TypeScript
import React from 'react';
import { IGenericImage } from './genericComponents.type';
export declare const defaultGenericComponents: {
LINK: React.ForwardRefExoticComponent<{
url: string;
children: string | JSX.Element;
className?: string;
target?: string;
onClick?: () => void;
onFocus?: () => void;
onMouseEnter?: () => void;
onMouseLeave?: () => void;
role?: import("../..").ROLES;
dataTestId?: string;
draggable?: boolean;
} & {
"aria-label"?: string | undefined | undefined;
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
"aria-describedby"?: string | undefined | undefined;
"aria-disabled"?: (boolean | "true" | "false") | undefined;
} & React.RefAttributes<unknown>>;
IMAGE: React.ForwardRefExoticComponent<IGenericImage & React.RefAttributes<unknown>>;
};