UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

20 lines (19 loc) 852 B
import { StatusIcon } from './status'; import type { DNB as DNBType, ProductType, BankAxeptType, CardType } from '../utils/Types'; import type { CardDesign } from '../utils/CardDesigns'; declare const BankLogo: ({ logoType }: { logoType: DNBType; }) => import("react/jsx-runtime").JSX.Element; declare const ProductLogo: ({ productType, cardDesign, }: { productType: ProductType; cardDesign: CardDesign; }) => import("react/jsx-runtime").JSX.Element; declare const BankAxeptLogo: ({ bankAxept, cardDesign, }: { bankAxept: BankAxeptType; cardDesign: CardDesign; }) => import("react/jsx-runtime").JSX.Element; declare const TypeLogo: ({ cardType, cardDesign, }: { cardType: CardType; cardDesign: CardDesign; }) => import("react/jsx-runtime").JSX.Element; export { BankLogo, ProductLogo, StatusIcon, TypeLogo, BankAxeptLogo };