UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

21 lines (20 loc) 1.13 kB
import { LineSeparatorLinePropsStylesType } from '../lineSeparator/types/lineSeparatorTheme'; import { FooterPropsStylesType } from './types/footerTheme'; type FooterStylesType = { styles: FooterPropsStylesType; $setVertical?: boolean; $flexReverse?: boolean; /** * @deprecated */ $alignItems?: string; }; type FooterSectionStyledType = FooterStylesType & { $justifyContent: string; }; type RootContainerStyledType = FooterStylesType & { lineSeparatorLineStyles: LineSeparatorLinePropsStylesType; }; export declare const FooterSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, FooterSectionStyledType>> & string; export declare const FooterStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, RootContainerStyledType>> & string; export {};