diff --git a/packages/grafana-ui/src/components/Card/Card.mdx b/packages/grafana-ui/src/components/Card/Card.mdx
new file mode 100644
index 00000000000..d98f13e84ce
--- /dev/null
+++ b/packages/grafana-ui/src/components/Card/Card.mdx
@@ -0,0 +1,282 @@
+import { Meta, Preview, Props } from "@storybook/addon-docs/blocks";
+import { Card } from "./Card";
+import { Button } from '../Button';
+import { IconButton } from '../IconButton/IconButton';
+
+export const logo = 'https://grafana.com/static/assets/img/apple-touch-icon.png'
+
+
+
+# Card
+
+## Usage
+
+### Basic
+A basic Card component expects at least a heading to be used as title. Optionally a `metadata` prop is accepted, to provide some secondary information for the card. Multiple meta data elements can be provided as an array, in which case they will be separated by a horizontal line: `|`.
+```jsx
+
+```
+
+
+
+
+
+### Multiple metadata elements
+
+```jsx
+
+```
+
+
+ console.log('clicked tag:', tag) }
+ />
+
+
+Metadata also accepts html elements, which could be links, for example. For elements, that are not strings, a `key` prop has to be manually specified.
+
+```jsx
+https://ops-us-east4.grafana.net/api/prom,
+ ]}
+/>
+```
+
+
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ />
+
+
+### As a link
+Card can be used as a clickable link item by specifying `href` prop. In this case the Card's content will be rendered inside `a`.
+
+```jsx
+
+```
+
+
+
+
+### Inside a list item
+
+To render cards in a list, it is possible to nest them inside `li` items.
+```jsx
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### With media elements
+
+Cards can also be rendered with media content such icons or images.
+
+```jsx
+https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+/>
+```
+
+
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ />
+
+
+### Action Cards
+
+Cards also accept primary and secondary actions. Usually the primary actions are displayed as buttons while secondary actions are displayed as icon buttons.
+
+```jsx
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ actions={[, ]}
+ secondaryActions={[
+ ,
+ ,
+ ]}
+/>
+```
+
+
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ actions={[,
+ ,
+ ]}
+ secondaryActions={[
+ ,
+ ,
+ ]}
+ />
+
+
+### Disabled state
+
+Card can have a disabled state, effectively making it and its actions non-clickable. If there is more than one primary action, disabled state will disable them instead of the whole card.
+
+```jsx
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ disabled
+/>
+```
+
+
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ disabled
+ />
+
+
+```jsx
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ actions={[, ]}
+ secondaryActions={[
+ ,
+ ,
+ ]}
+ disabled
+/>
+```
+
+
+ https://ops-us-east4.grafana.net/api/prom,
+ ]}
+ image={}
+ actions={[, ]}
+ secondaryActions={[
+ ,
+ ,
+ ]}
+ disabled
+ />
+
+
+
+### Props
+
+
diff --git a/packages/grafana-ui/src/components/Card/Card.story.internal.tsx b/packages/grafana-ui/src/components/Card/Card.story.internal.tsx
new file mode 100644
index 00000000000..533c08da559
--- /dev/null
+++ b/packages/grafana-ui/src/components/Card/Card.story.internal.tsx
@@ -0,0 +1,156 @@
+import React from 'react';
+import { boolean } from '@storybook/addon-knobs';
+import { withCenteredStory } from '../../utils/storybook/withCenteredStory';
+import { Card } from './Card';
+import mdx from './Card.mdx';
+import { Button } from '../Button';
+import { IconButton } from '../IconButton/IconButton';
+
+const logo = 'https://grafana.com/static/assets/img/apple-touch-icon.png';
+
+export default {
+ title: 'General/Card',
+ component: Card,
+ decorators: [withCenteredStory],
+ parameters: {
+ docs: {
+ page: mdx,
+ },
+ },
+};
+
+const getKnobs = () => {
+ const disabled = boolean('Disabled', false, 'Style props');
+
+ return { disabled };
+};
+
+export const Basic = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ );
+};
+
+export const AsLink = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ );
+};
+
+export const WithTooltip = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ );
+};
+
+export const WithTags = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ );
+};
+
+export const WithMedia = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ https://ops-us-east4.grafana.net/api/prom
+ ,
+ ]}
+ disabled={disabled}
+ image={}
+ />
+ );
+};
+export const WithActions = () => {
+ const { disabled } = getKnobs();
+ return (
+
+ https://ops-us-east4.grafana.net/api/prom
+ ,
+ ]}
+ disabled={disabled}
+ image={}
+ actions={[
+ ,
+ ,
+ ]}
+ secondaryActions={[
+ ,
+ ,
+ ]}
+ />
+ );
+};
+
+export const Full = () => {
+ const { disabled } = getKnobs();
+
+ return (
+
+ https://ops-us-east4.grafana.net/api/prom
+ ,
+ ]}
+ disabled={disabled}
+ image={}
+ tags={['firing', 'active', 'test', 'testdata', 'prometheus']}
+ description="Description, body text. Greetings! Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
+ actions={[
+ ,
+ ,
+ ]}
+ secondaryActions={[
+ ,
+ ,
+ ,
+ ,
+ ,
+ ]}
+ />
+ );
+};
diff --git a/packages/grafana-ui/src/components/Card/Card.tsx b/packages/grafana-ui/src/components/Card/Card.tsx
new file mode 100644
index 00000000000..45bc6e43be8
--- /dev/null
+++ b/packages/grafana-ui/src/components/Card/Card.tsx
@@ -0,0 +1,245 @@
+import React, { cloneElement, FC, HTMLAttributes, ReactElement, ReactNode, useCallback, useMemo } from 'react';
+import { css, cx } from 'emotion';
+import { GrafanaTheme } from '@grafana/data';
+import { useTheme, styleMixins, stylesFactory } from '../../themes';
+import { Tooltip, PopoverContent } from '../Tooltip/Tooltip';
+import { OnTagClick } from '../Tags/Tag';
+import { TagList } from '../Tags/TagList';
+
+/**
+ * @alpha
+ */
+export interface ContainerProps extends HTMLAttributes {
+ /** Content for the card's tooltip */
+ tooltip?: PopoverContent;
+}
+
+const CardContainer: FC = ({ children, tooltip, ...props }) => {
+ return tooltip ? (
+
+
{children}
+
+ ) : (
+
{children}
+ );
+};
+
+/**
+ * @alpha
+ */
+export interface CardInnerProps {
+ href?: string;
+}
+
+const CardInner: FC = ({ children, href }) => {
+ const theme = useTheme();
+ const styles = getCardStyles(theme);
+ return href ? (
+
+ {children}
+
+ ) : (
+ <>{children}>
+ );
+};
+
+/**
+ * @alpha
+ */
+export interface Props extends ContainerProps {
+ /** Main heading for the Card **/
+ heading: ReactNode;
+ /** Additional data about the card. If array is supplied, elements will be rendered with vertical line separator */
+ metadata?: ReactNode | ReactNode[];
+ /** Card description text */
+ description?: string;
+ /** List of tags to display in the card */
+ tags?: string[];
+ /** Optional callback for tag onclick event */
+ onTagClick?: OnTagClick;
+ /** Indicates if the card and all its actions can be interacted with */
+ disabled?: boolean;
+ /** Image or icon to be displayed on the let side of the card */
+ image?: ReactNode;
+ /** Main card actions **/
+ actions?: ReactElement[];
+ /** Right-side actions */
+ secondaryActions?: ReactElement[];
+ /** Link to redirect to on card click. If provided, the Card inner content will be rendered inside `a` */
+ href?: string;
+ /** On click handler for the Card */
+ onClick?: () => void;
+}
+
+/**
+ * Generic card component
+ *
+ * @alpha
+ */
+export const Card: FC = ({
+ heading,
+ description,
+ metadata,
+ tags = [],
+ onTagClick,
+ disabled,
+ image,
+ actions = [],
+ tooltip,
+ secondaryActions = [],
+ href,
+ onClick,
+ className,
+ ...htmlProps
+}) => {
+ const hasActions = Boolean(actions.length || secondaryActions.length);
+ const disableHover = disabled || actions.length > 1 || !onClick;
+ const disableEvents = disabled && !actions.length;
+ const theme = useTheme();
+ const styles = getCardStyles(theme, disableEvents, disableHover);
+ // Join meta data elements by '|'
+ const meta = useMemo(
+ () =>
+ Array.isArray(metadata)
+ ? (metadata as ReactNode[]).filter(Boolean).reduce((prev, curr, i) => [
+ prev,
+
+ |
+ ,
+ curr,
+ ])
+ : metadata,
+ [metadata, styles.separator]
+ );
+ const onCardClick = useCallback(() => (disableHover ? () => {} : onClick), [disableHover, onClick]);
+
+ return (
+
+
+ {image &&