/** *The `` component can be used in place of a `` if your content allows it. Unless it is sitting beside your main content, it should always be wrapped inside of a ``. This allows the correct gutter and border placement between a group of cards * Although the mini-resource card has a similar geometry to the button component, they should not be used in place of a button. Buttons encourage action from the user and affect the website's front-end or back-end. The resource cards, both large and mini are essentially links. They are used for navigation and actions that do not affect the website. **/ export function MiniCard({ children, href, title, actionIcon, className, linkProps, ...rest }: { [x: string]: any; children: any; href: any; title: any; actionIcon: any; className: any; linkProps: any; }): React.FunctionComponentElement>>; export namespace MiniCard { namespace propTypes { let actionIcon: PropTypes.Requireable; let children: PropTypes.Requireable; let className: PropTypes.Requireable; let href: PropTypes.Requireable; let linkProps: PropTypes.Requireable; let title: PropTypes.Validator; } } import React from 'react'; import PropTypes from 'prop-types';