@react-md/card
Version:
Create interactable cards from the material design specifications.
9 lines (8 loc) • 356 B
TypeScript
import type { HTMLAttributes, ReactElement } from "react";
/**
* This component is used to dynamically add addons to the `CardHeader`
* component. When no children are provided, nothing will be rendered.
*
* @internal
*/
export declare function CardHeaderAddon({ className, children, ...props }: HTMLAttributes<HTMLSpanElement>): ReactElement | null;