@transkripid/flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS - Transkrip.id fork
7 lines (6 loc) • 367 B
TypeScript
import { type ComponentPropsWithoutRef, type ElementType } from 'react';
export type ButtonBaseProps<T extends ElementType = 'button'> = {
as?: T;
href?: string;
} & ComponentPropsWithoutRef<T>;
export declare const ButtonBase: import("react").ForwardRefExoticComponent<Omit<ButtonBaseProps<ElementType>, "ref"> & import("react").RefAttributes<ElementType>>;