@capgeminiuk/dcx-react-library
Version:
[](https://circleci.com/gh/Capgemini/dcx-react-library)
14 lines (13 loc) • 425 B
TypeScript
import React from 'react';
type CardActionsProps = {
/**
* allows to pass a child or children to the component
*/
children: JSX.Element | JSX.Element[];
/**
* Relevant classes for shared / reusable styling
*/
className?: string;
} & React.HTMLAttributes<HTMLElement>;
export declare const CardActions: ({ className, children, ...props }: CardActionsProps) => React.JSX.Element;
export {};