@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
8 lines (7 loc) • 301 B
TypeScript
import type { PropsFor } from "../../types.js";
export type CardContentProps = PropsFor<"div">;
/**
* Content wrapper inside a Card
*/
declare const CardContent: import("react").ForwardRefExoticComponent<CardContentProps & import("react").RefAttributes<HTMLDivElement>>;
export default CardContent;