@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
14 lines (13 loc) • 488 B
TypeScript
import { IconProp } from "@fortawesome/fontawesome-svg-core";
import type { PropsFor } from "../../types.js";
export type CardLogoProps = PropsFor<"div", {
/** Font Awesome icon reference (or string if using library) */
icon?: IconProp;
/** Image URL */
imageUrl?: string;
}>;
/**
* Logo banner element for Card
*/
declare const CardLogo: import("react").ForwardRefExoticComponent<CardLogoProps & import("react").RefAttributes<HTMLDivElement>>;
export default CardLogo;