Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / components / organisms / Footer / typings.ts
Size: Mime:
import { ReactNode } from 'react'
import { FooterProps as FooterPlaceholderProps } from 'abstractions/Footer/typings'
import { MultipleListProps } from 'presets/MultipleLinkList/typings'
import { SocialIconDataType } from 'molecules/SocialIconList/typings'
import { CopyrightProps } from 'features/Copyright/typings'
import { LogoIconProps } from 'atoms/Icons/LogoIcon/typings'

interface FooterPoweredByData {
  label?: string
  value?: string
}

interface FooterProps extends FooterPlaceholderProps {
  logoType?: string
  logoColor?: string
  connectText?: string
  copyrightData?: CopyrightProps
  listOfLinks?: MultipleListProps
  listOfSocialIcons?: SocialIconDataType
  poweredByData?: FooterPoweredByData
  logoIcon?: LogoIconProps
}

export { FooterProps, FooterPoweredByData }