/** * patternId: "card" templateId: "react" * This file was automatically generated by Knapsack. * DO NOT MODIFY IT BY HAND. * Instead, adjust it's spec, by either: * 1) go to "/patterns/card/react" and use the UI to edit the spec * 2) OR edit the "knapsack.pattern.card.json" file's "spec.props". * Run Knapsack again to regenerate this file. */ import * as React from 'react'; /** * [Knapsack Docs](http://localhost:3999/pattern/card/react) */ export interface CardProps { heading: string; icon?: 'book' | 'clock' | 'graph' | 'user'; bodyText: string; children?: React.ReactNode; }