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