flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
13 lines (12 loc) • 400 B
TypeScript
import type { ComponentProps, ElementType, FC } from "react";
import type { DeepPartial } from "../../types";
export interface FlowbiteFooterLinkTheme {
base: string;
href: string;
}
export interface FooterLinkProps extends ComponentProps<"a"> {
as?: ElementType;
href: string;
theme?: DeepPartial<FlowbiteFooterLinkTheme>;
}
export declare const FooterLink: FC<FooterLinkProps>;