UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

14 lines (13 loc) 425 B
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 {};