kel-ui-components
Version:
A modern, accessible UI component library built with React, TypeScript, and Tailwind CSS
8 lines • 307 B
TypeScript
import React from "react";
import { ComponentProps } from "../../types";
interface ExampleProps extends ComponentProps {
text?: string;
}
declare const Example: React.ForwardRefExoticComponent<ExampleProps & React.RefAttributes<HTMLDivElement>>;
export { Example };
//# sourceMappingURL=example.d.ts.map