Repository URL to install this package:
|
Version:
2.1.16 ▾
|
import { FooterProps as FooterPlaceholderProps } from 'abstractions/Footer/typings';
import { MultipleListProps } from 'presets/MultipleLinkList/typings';
import { SocialIconDataType, InformationProps } from '@skava/ui/dist/components/molecules/SocialIconList/typings';
import { CopyrightProps } from '@skava/ui/dist/components/features/Copyright/typings';
import { LogoIconProps } from '@skava/ui/dist/components/atoms/Icons/LogoIcon/typings';
interface FooterPoweredByData {
label?: string;
value?: string;
}
interface IconHandlerProps {
item: InformationProps;
event: Event;
}
interface FooterProps extends FooterPlaceholderProps {
logoType?: string;
logoColor?: string;
connectText?: string;
breed?: string;
copyrightData?: CopyrightProps;
listOfLinks?: MultipleListProps;
listOfSocialIcons?: SocialIconDataType;
poweredByData?: FooterPoweredByData;
logoIcon?: LogoIconProps;
onSocialIconClick?: (args: IconHandlerProps) => void;
}
export { FooterProps, FooterPoweredByData };