UNPKG

@rarcifa/cronos-design-system

Version:

A typescript react component library following the Cronos branding standards

14 lines (13 loc) 489 B
/// <reference types="react" /> export interface CardProps { /** * Children to be passed into the card component. This prop allows to add card content and other * react structures such as divs, images and spans. */ children?: React.ReactNode; /** * Footer to be passed into the card component. This prop allows to add card fooder content and other * react structures such as divs, images and spans. */ footer?: React.ReactNode; }