From 0f2e8136371c58c6efaca7043ed1af239e13858f Mon Sep 17 00:00:00 2001 From: Alexander Fedyashov Date: Thu, 23 Feb 2017 00:34:35 +0200 Subject: [PATCH] fix(Card): add link prop to typings (#1369) --- src/views/Card/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/views/Card/index.d.ts b/src/views/Card/index.d.ts index 01919d6426..d3cdf9d9d9 100644 --- a/src/views/Card/index.d.ts +++ b/src/views/Card/index.d.ts @@ -37,6 +37,9 @@ interface CardProps { /** A card can contain an Image component. */ image?: any; + /** A card can be formatted to link to other content. */ + link?: boolean; + /** Shorthand for CardMeta. */ meta?: any;