carbon-react
Version:
A library of reusable React components for easily building user interfaces.
16 lines (15 loc) • 619 B
TypeScript
import React from "react";
import { SpaceProps } from "styled-system";
import { CardContextProps } from "../__internal__/card.context";
import { TagProps } from "../../../__internal__/utils/helpers/tags/tags";
export interface CardFooterProps extends SpaceProps, Partial<Pick<CardContextProps, "roundness">>, TagProps {
/** Child nodes */
children: React.ReactNode;
/** Specify styling variant to render */
variant?: "default" | "transparent";
}
declare const CardFooter: {
({ children, variant, ...rest }: CardFooterProps): React.JSX.Element;
displayName: string;
};
export default CardFooter;