diff --git a/packages/canon/CHANGELOG.md b/packages/canon/CHANGELOG.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/canon/docs/Home.mdx b/packages/canon/docs/Home.mdx index e1199604a8..d7508d3476 100644 --- a/packages/canon/docs/Home.mdx +++ b/packages/canon/docs/Home.mdx @@ -1,5 +1,5 @@ import { Unstyled } from '@storybook/blocks'; -import { Columns, Text, ComponentStatus } from './components'; +import { Columns, Text, ComponentStatus, Banner } from './components'; @@ -13,6 +13,11 @@ import { Columns, Text, ComponentStatus } from './components'; building it incrementally with not conflict with the existing theming system. + + This library is still under heavy construction. Please be aware that the API + will change until we reach a stable release. + + { + return ( +
+
+ + + +
+ {children} +
+ ); +}; diff --git a/packages/canon/docs/components/index.ts b/packages/canon/docs/components/index.ts index c8a02b67ce..265c5c06b6 100644 --- a/packages/canon/docs/components/index.ts +++ b/packages/canon/docs/components/index.ts @@ -21,3 +21,4 @@ export * from './text'; export * from './columns'; export * from './component-status'; export * from './layout-components'; +export * from './banner';