flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
16 lines (15 loc) • 491 B
TypeScript
import type { ComponentProps, FC } from "react";
import type { DeepPartial } from "../../types";
import type { FlowbiteBoolean } from "../Flowbite";
export interface FlowbiteSidebarLogoTheme {
base: string;
collapsed: FlowbiteBoolean;
img: string;
}
export interface SidebarLogoProps extends ComponentProps<"a"> {
href: string;
img: string;
imgAlt?: string;
theme?: DeepPartial<FlowbiteSidebarLogoTheme>;
}
export declare const SidebarLogo: FC<SidebarLogoProps>;