UNPKG

@wordpress/components

Version:
25 lines 751 B
/// <reference types="react" /> /** * `CardFooter` renders an optional footer within a `Card`. * * ```jsx * import { Card, CardBody, CardFooter } from `@wordpress/components`; * * <Card> * <CardBody>...</CardBody> * <CardFooter>...</CardFooter> * </Card> * ``` */ export declare const CardFooter: import("../../ui/context").WordPressComponent<"div", { size?: import("../types").SizeOptions | "extraSmall" | undefined; } & { children: import("react").ReactNode; isShady?: boolean | undefined; } & { isBorderless?: boolean | undefined; } & { justify?: import("csstype").Property.JustifyContent | undefined; } & import("react").RefAttributes<any>, true>; export default CardFooter; //# sourceMappingURL=component.d.ts.map