diff --git a/package-lock.json b/package-lock.json
index e2c77a532..f89274a76 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -16496,9 +16496,9 @@
"dev": true
},
"popper.js": {
- "version": "1.14.3",
- "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.3.tgz",
- "integrity": "sha1-FDj5jQRqz3tNeM1QK/QYrGTU8JU=",
+ "version": "1.14.4",
+ "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.4.tgz",
+ "integrity": "sha1-juwdj/AqWjoVLdQ0FKFce3n9abY=",
"dev": true
},
"portfinder": {
diff --git a/package.json b/package.json
index afde65a13..9283410b5 100644
--- a/package.json
+++ b/package.json
@@ -174,7 +174,7 @@
"react-dev-utils": "6.0.0-next.3e165448",
"react-dom": "^16.4.0",
"react-final-form": "^3.6.4",
- "react-popper": "^1.0.0-beta.6",
+ "react-popper": "^1.0.0",
"react-relay": "github:coralproject/patched#react-relay",
"react-responsive": "^5.0.0",
"react-test-renderer": "^16.4.1",
diff --git a/src/core/client/ui/components/CallOut/CallOut.css b/src/core/client/ui/components/CallOut/CallOut.css
new file mode 100644
index 000000000..2022383a5
--- /dev/null
+++ b/src/core/client/ui/components/CallOut/CallOut.css
@@ -0,0 +1,34 @@
+.root {
+ composes: bodyCopy from "talk-ui/shared/typography.css";
+ position: relative;
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ padding: var(--spacing-unit);
+ box-sizing: border-box;
+ border-width: 1px;
+ border-style: solid;
+}
+
+.colorRegular {
+ background-color: var(--palette-grey-lightest);
+ border-color: var(--palette-grey-light);
+ color: var(--palette-text-primary);
+}
+
+.colorPrimary {
+ background-color: var(--palette-primary-lightest);
+ border-color: var(--palette-primary-light);
+ color: var(--palette-text-primary);
+}
+
+.colorError {
+ background-color: var(--palette-error-lightest);
+ border-color: var(--palette-error-light);
+ color: var(--palette-text-primary);
+}
+
+.fullWidth {
+ display: flex;
+ width: 100%;
+}
diff --git a/src/core/client/ui/components/CallOut/CallOut.mdx b/src/core/client/ui/components/CallOut/CallOut.mdx
new file mode 100644
index 000000000..b3977a56a
--- /dev/null
+++ b/src/core/client/ui/components/CallOut/CallOut.mdx
@@ -0,0 +1,23 @@
+---
+name: CallOut
+menu: UI Kit
+---
+
+import { Playground, PropsTable } from 'docz'
+import CallOut from './CallOut'
+import Flex from '../Flex'
+
+# CallOut
+
+## Basic Use
+
+
+ This is a component for a callout. Any text that you are wanting to draw attention to such as community guidelines, announcements, etc. can be placed in something like a callout box. The color of the callout box can be customized according your own needs.
+ This is a component for a callout. Any text that you are wanting to draw attention to such as community guidelines, announcements, etc. can be placed in something like a callout box. The color of the callout box can be customized according your own needs.
+ This is a component for a callout. Any text that you are wanting to draw attention to such as community guidelines, announcements, etc. can be placed in something like a callout box. The color of the callout box can be customized according your own needs.
+ The email address or password you entered is incorrect. Try again
+ The email address or password you entered is incorrect. Try again
+
+
+
+
diff --git a/src/core/client/ui/components/CallOut/CallOut.spec.tsx b/src/core/client/ui/components/CallOut/CallOut.spec.tsx
new file mode 100644
index 000000000..183e5acb5
--- /dev/null
+++ b/src/core/client/ui/components/CallOut/CallOut.spec.tsx
@@ -0,0 +1,16 @@
+import React from "react";
+import TestRenderer from "react-test-renderer";
+
+import { PropTypesOf } from "talk-ui/types";
+
+import CallOut from "./CallOut";
+
+it("renders correctly", () => {
+ const props: PropTypesOf = {
+ className: "custom",
+ color: "error",
+ children: "Hello World",
+ };
+ const renderer = TestRenderer.create();
+ expect(renderer.toJSON()).toMatchSnapshot();
+});
diff --git a/src/core/client/ui/components/CallOut/CallOut.tsx b/src/core/client/ui/components/CallOut/CallOut.tsx
new file mode 100644
index 000000000..11eccff2c
--- /dev/null
+++ b/src/core/client/ui/components/CallOut/CallOut.tsx
@@ -0,0 +1,57 @@
+import cn from "classnames";
+import React from "react";
+import { ReactNode, StatelessComponent } from "react";
+import { withStyles } from "talk-ui/hocs";
+import * as styles from "./CallOut.css";
+
+export interface CallOutProps {
+ /**
+ * The content of the component.
+ */
+ children: ReactNode;
+ /**
+ * Convenient prop to override the root styling.
+ */
+ className?: string;
+ /**
+ * Override or extend the styles applied to the component.
+ */
+ classes: typeof styles;
+ /**
+ * Color of the CallOut
+ */
+ color?: "regular" | "primary" | "error";
+ /*
+ * If set renders a full width CallOut
+ */
+ fullWidth?: boolean;
+}
+
+const CallOut: StatelessComponent = props => {
+ const { className, classes, color, fullWidth, children, ...rest } = props;
+
+ const rootClassName = cn(
+ classes.root,
+ {
+ [classes.colorRegular]: color === "regular",
+ [classes.colorError]: color === "error",
+ [classes.colorPrimary]: color === "primary",
+ [classes.fullWidth]: fullWidth,
+ },
+ className
+ );
+
+ return (
+