@olleemilsson/flowbite-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
49 lines (48 loc) • 1.31 kB
TypeScript
import type { ComponentProps, FC } from 'react';
export interface FlowbiteFooterTheme {
base: string;
container: string;
bgDark: string;
groupLink: {
base: string;
link: {
base: string;
href: string;
};
col: string;
};
icon: {
base: string;
size: string;
};
title: {
base: string;
};
divider: {
base: string;
};
copyright: {
base: string;
href: string;
span: string;
};
brand: {
base: string;
img: string;
span: string;
};
}
export interface FooterProps extends ComponentProps<'footer'> {
bgDark?: boolean;
container?: boolean;
}
export declare const FooterComponent: FC<FooterProps>;
export declare const Footer: FC<FooterProps> & {
Copyright: FC<import("./FooterCopyright").CopyrightProps>;
Link: FC<import("./FooterLink").FooterLinkProps>;
LinkGroup: FC<import("./FooterLinkGroup").FooterLinkGroupProps>;
Brand: FC<import("./FooterBrand").FooterBrandProps>;
Icon: FC<import("./FooterIcon").FooterIconProps>;
Title: FC<import("./FooterTitle").FooterTitleProps>;
Divider: FC<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHRElement>, HTMLHRElement>>;
};