diff --git a/apps/docs/.env.development b/apps/docs/.env.development
deleted file mode 100644
index e3d837f5d..000000000
--- a/apps/docs/.env.development
+++ /dev/null
@@ -1,3 +0,0 @@
-NODE_ENV='development'
-NEXT_PUBLIC_GIT_REPO_OWNER=''
-NEXT_PUBLIC_GIT_REPO_SLUG=''
\ No newline at end of file
diff --git a/apps/docs/.eslintrc.js b/apps/docs/.eslintrc.js
deleted file mode 100644
index b60e1cd62..000000000
--- a/apps/docs/.eslintrc.js
+++ /dev/null
@@ -1,4 +0,0 @@
-module.exports = {
- root: true,
- extends: ['@westpac/eslint-config/nextjs'],
-};
diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md
deleted file mode 100644
index 82daa6b05..000000000
--- a/apps/docs/CHANGELOG.md
+++ /dev/null
@@ -1,50 +0,0 @@
-# docs
-
-## 0.1.20
-
-### Patch Changes
-
-- Updated dependencies [6e580a5]
- - @westpac/ui@0.7.0
-
-## 0.1.19
-
-### Patch Changes
-
-- Updated dependencies [240f606]
- - @westpac/ui@0.6.0
-
-## 0.1.18
-
-### Patch Changes
-
-- Updated dependencies [473c0d6]
- - @westpac/ui@0.5.0
-
-## 0.1.17
-
-### Patch Changes
-
-- Updated dependencies [3182ae2]
- - @westpac/ui@0.4.0
-
-## 0.1.16
-
-### Patch Changes
-
-- Updated dependencies
- - @westpac/ui@0.3.0
-
-## 0.1.15
-
-### Patch Changes
-
-- Updated dependencies
- - @westpac/ui@0.2.1
-
-## 0.1.14
-
-### Patch Changes
-
-- Updated dependencies [c20c3f7]
- - @westpac/ui@0.2.0
diff --git a/apps/docs/README.md b/apps/docs/README.md
deleted file mode 100644
index 42d1f4b71..000000000
--- a/apps/docs/README.md
+++ /dev/null
@@ -1,11 +0,0 @@
-# Playground Application
-
-This project is an example project to show how to consume the `@westpact/ui` package from this monorepo.
-
-> Although this sample project is within this monorepo, please consider it as an external project that consumes packages from this monorepo.
-
-Observe that this project uses the following packages:
-
-- @westpac/ui
-- @westpac/eslint-config
-- @westpac/ts-config
diff --git a/apps/docs/content/components/accordion.yaml b/apps/docs/content/components/accordion.yaml
deleted file mode 100644
index c04b4ab41..000000000
--- a/apps/docs/content/components/accordion.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Accordion
diff --git a/apps/docs/content/components/accordion/code.mdoc b/apps/docs/content/components/accordion/code.mdoc
deleted file mode 100644
index 646f6e742..000000000
--- a/apps/docs/content/components/accordion/code.mdoc
+++ /dev/null
@@ -1,71 +0,0 @@
-## Accordion
-
-### Default accordion: See Visual design for the usage recommendations for the default style.
-
-```jsx
-
- {[
- { key: 'files', title: 'Your files' },
- { key: 'shared', title: 'Shared with you' },
- { key: 'last', title: 'Last item' },
- ].map(({ key, title }) => (
-
-
{title}
-
- Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quaerat in, nobis itaque iste sequi, pariatur, nam
- reiciendis quasi illum nulla aliquid mollitia corrupti nostrum incidunt? At minima error nobis ullam!
-
-
- ))}
-
-```
-
-### Lego accordion: See Visual design for the usage recommendations for the lego style.
-
-```jsx
-
- {[
- { key: 'files', title: 'Your files' },
- { key: 'shared', title: 'Shared with you' },
- { key: 'last', title: 'Last item' },
- ].map(({ key, title }) => (
-
-
{title}
-
- Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quaerat in, nobis itaque iste sequi, pariatur, nam
- reiciendis quasi illum nulla aliquid mollitia corrupti nostrum incidunt? At minima error nobis ullam!
-
- Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quaerat in, nobis itaque iste sequi, pariatur, nam
- reiciendis quasi illum nulla aliquid mollitia corrupti nostrum incidunt? At minima error nobis ullam!
-
-
- Heads up! This alert needs your attention, but it’s not super important. Link
-
-
- Well done! You successfully read this important alert message. Link
-
-
- Warning! Better check yourself, you’re not looking too good. Link
-
-
- Oh snap! Change a few things up and try submitting again. Link
-
-
- System Error 8942: The server is no responding. Please try again later. Sorry for the
- inconvenience. Link
-
-
-```
-
----
-
-## Text
-
-```jsx
-
-
- Heads up! This alert needs your attention, but it’s not super important. Link
-
-
- Well done! You successfully read this important alert message. Link
-
-
- Warning! Better check yourself, you’re not looking too good. Link
-
-
- Oh snap! Change a few things up and try submitting again. Link
-
-
- System Error 8942: The server is no responding. Please try again later. Sorry for the
- inconvenience. Link
-
-
-```
-
----
-
-## Heading
-
-```jsx
-
- This alert needs your attention, but it’s not super important. Lorem ipsum dolor sit amet, consectetur adipisicing
- elit. Quo dolor provident quasi nisi officia tempore fuga autem, animi iste molestiae, qui omnis doloribus aliquid
- ipsam rem fugiat veniam voluptatem accusamus! Lorem ipsum dolor sit amet, consectetur adipisicing elit.
- Link
-
-```
-
----
-
-## Custom
-
-```jsx
-
- Heads up! Only info look alerts allow custom icons. Link
-
-```
-
----
-
-## Dismissible
-
-```jsx
-
- Heads up! This alert needs your attention, but it’s not super important. Link
-
-```
-
----
-
-## Controlled
-
-```jsx
-() => {
- const [open, setOpen] = useState(true);
- return (
-
-
- setOpen(false)}>
- Heads up! This alert needs your attention, but it’s not super important.{' '}
- Link
-
-
- )
-};
-```
diff --git a/apps/docs/content/components/autocomplete.yaml b/apps/docs/content/components/autocomplete.yaml
deleted file mode 100644
index 5e4abf834..000000000
--- a/apps/docs/content/components/autocomplete.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Autocomplete
diff --git a/apps/docs/content/components/autocomplete/code.mdoc b/apps/docs/content/components/autocomplete/code.mdoc
deleted file mode 100644
index ec435208a..000000000
--- a/apps/docs/content/components/autocomplete/code.mdoc
+++ /dev/null
@@ -1,101 +0,0 @@
-## Autocomplete
-
-### Default
-
-```jsx
-
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
-```
-
-### Controlled
-
-```jsx
-() => {
- const [selectedKey, setSelectedKey] = useState();
- const handleSelectionChange = (key: Key) => {
- setSelectedKey(key);
- };
- return (
-
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
- );
-};
-```
-
-### Invalid
-
-```jsx
-
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
-```
-
-### Disabled
-
-```jsx
-
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
-```
-
-### Sizes
-
-```tsx
-() => {
- const [selectedKey, setSelectedKey] = useState();
- const handleSelectionChange = (key: Key) => {
- setSelectedKey(key);
- };
- return (
-
- {(['small', 'medium', 'large', 'xlarge'] as const).map(size => (
-
-
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
-
- ))}
-
- );
-};
-```
-
-### Footer
-
-```jsx
-Footer message}>
- Red Panda
- Cat
- Dog
- Aardvark
- Kangaroo
- Snake
-
-```
diff --git a/apps/docs/content/components/breadcrumb.yaml b/apps/docs/content/components/breadcrumb.yaml
deleted file mode 100644
index d2179414f..000000000
--- a/apps/docs/content/components/breadcrumb.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Breadcrumb
diff --git a/apps/docs/content/components/breadcrumb/code.mdoc b/apps/docs/content/components/breadcrumb/code.mdoc
deleted file mode 100644
index abc753609..000000000
--- a/apps/docs/content/components/breadcrumb/code.mdoc
+++ /dev/null
@@ -1,23 +0,0 @@
-## Breadcrumb
-
-```jsx
-// Using the Link component (as NextLink) from 'next/LinkLink'
-
-
- Anchor item
-
-
- Another anchor item
-
-
-
- Disabled item
-
-
-
-
- Last item
-
-
-
-```
diff --git a/apps/docs/content/components/button-dropdown.yaml b/apps/docs/content/components/button-dropdown.yaml
deleted file mode 100644
index 34cec2224..000000000
--- a/apps/docs/content/components/button-dropdown.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Button Dropdown
\ No newline at end of file
diff --git a/apps/docs/content/components/button-dropdown/code.mdoc b/apps/docs/content/components/button-dropdown/code.mdoc
deleted file mode 100644
index fde7b3536..000000000
--- a/apps/docs/content/components/button-dropdown/code.mdoc
+++ /dev/null
@@ -1,49 +0,0 @@
-## Default usage
-
-```jsx
-
-
-```
\ No newline at end of file
diff --git a/apps/docs/content/components/button.yaml b/apps/docs/content/components/button.yaml
deleted file mode 100644
index 4f8a4112c..000000000
--- a/apps/docs/content/components/button.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Button
diff --git a/apps/docs/content/components/button/code.mdoc b/apps/docs/content/components/button/code.mdoc
deleted file mode 100644
index 22dbcd567..000000000
--- a/apps/docs/content/components/button/code.mdoc
+++ /dev/null
@@ -1,82 +0,0 @@
-## Button sizes
-
-```jsx
-
-
-
-
-
-
-
-
-
-```
----
-
-## Standard buttons
-
-```jsx
-
-
-
-
-
-
-```
----
-
-## Soft buttons
-
-```jsx
-
-
-
-
-
-```
----
-
-## Buttons with icons
-
-```jsx
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-```
-
----
-
-## Responsive buttons
-
-Medium size button becomes Extra large from the MD breakpoint
-
-```jsx
-
-```
-
-Small size button becomes medium at the SM breakpoint, large at the MD breakpoint and Extra large at the LG breakpoint
-
-```jsx
-
-```
diff --git a/apps/docs/content/components/checkbox-group.yaml b/apps/docs/content/components/checkbox-group.yaml
deleted file mode 100644
index 4bd59ffe3..000000000
--- a/apps/docs/content/components/checkbox-group.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Checkbox Group
\ No newline at end of file
diff --git a/apps/docs/content/components/checkbox-group/code.mdoc b/apps/docs/content/components/checkbox-group/code.mdoc
deleted file mode 100644
index e803a124f..000000000
--- a/apps/docs/content/components/checkbox-group/code.mdoc
+++ /dev/null
@@ -1,109 +0,0 @@
-This component was combined with RadioGroup in the old GEL, it is now it's own component as it using React Aria
-
-## Checkbox sizes
-
-```jsx
-
-```
\ No newline at end of file
diff --git a/apps/docs/content/components/collapsible.yaml b/apps/docs/content/components/collapsible.yaml
deleted file mode 100644
index 999a2cde1..000000000
--- a/apps/docs/content/components/collapsible.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Collapsible
\ No newline at end of file
diff --git a/apps/docs/content/components/collapsible/code.mdoc b/apps/docs/content/components/collapsible/code.mdoc
deleted file mode 100644
index 55410c769..000000000
--- a/apps/docs/content/components/collapsible/code.mdoc
+++ /dev/null
@@ -1,61 +0,0 @@
-## Collapsible sizes
-
-```jsx
-
-
-
Small
-
-
-
- Hello vivamus sagittis lacus vel augue laoreet rutrum faucibus. Lorem ipsum dolor sit amet, consectetur
- adipisicing elit. Nesciunt laboriosam, mollitia magnam ad magni consequuntur hic et quos optio corrupti
- praesentium veniam aspernatur minima aperiam ut quas, possimus non architecto. Lorem ipsum dolor sit amet,
- consectetur adipisicing elit. Aut animi velit in? Suscipit nostrum itaque voluptatibus dolorem qui soluta
- nobis modi officia incidunt eos dolores atque, unde error delectus officiis.
-
-
-
-
-
-
Medium (default)
-
-
-
- Hello vivamus sagittis lacus vel augue laoreet rutrum faucibus. Lorem ipsum dolor sit amet, consectetur
- adipisicing elit. Nesciunt laboriosam, mollitia magnam ad magni consequuntur hic et quos optio corrupti
- praesentium veniam aspernatur minima aperiam ut quas, possimus non architecto. Lorem ipsum dolor sit amet,
- consectetur adipisicing elit. Aut animi velit in? Suscipit nostrum itaque voluptatibus dolorem qui soluta
- nobis modi officia incidunt eos dolores atque, unde error delectus officiis.
-
-
-
-
-
-
Large
-
-
-
- Hello vivamus sagittis lacus vel augue laoreet rutrum faucibus. Lorem ipsum dolor sit amet, consectetur
- adipisicing elit. Nesciunt laboriosam, mollitia magnam ad magni consequuntur hic et quos optio corrupti
- praesentium veniam aspernatur minima aperiam ut quas, possimus non architecto. Lorem ipsum dolor sit amet,
- consectetur adipisicing elit. Aut animi velit in? Suscipit nostrum itaque voluptatibus dolorem qui soluta
- nobis modi officia incidunt eos dolores atque, unde error delectus officiis.
-
-
-
-
-
-
XLarge
-
-
-
- Hello vivamus sagittis lacus vel augue laoreet rutrum faucibus. Lorem ipsum dolor sit amet, consectetur
- adipisicing elit. Nesciunt laboriosam, mollitia magnam ad magni consequuntur hic et quos optio corrupti
- praesentium veniam aspernatur minima aperiam ut quas, possimus non architecto. Lorem ipsum dolor sit amet,
- consectetur adipisicing elit. Aut animi velit in? Suscipit nostrum itaque voluptatibus dolorem qui soluta
- nobis modi officia incidunt eos dolores atque, unde error delectus officiis.
-
- {[
- 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem quae possimus, nam nobis cumque ullam et harum, magni quam distinctio, corporis sunt saepe maxime quod. Sapiente voluptatibus sint dicta tenetur.',
- 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem quae possimus, nam nobis cumque ullam et harum, magni quam distinctio, corporis sunt saepe.',
- 'Lorem ipsum dolor sit amet',
- ].map(title => (
-
- Badge
-
- }
- >
-
-
- MYER
-
- );
-};
-```
-
-### Promo tiles horizontal list usage
-
-```jsx
-() => {
- const MOCK_PROMOS = [
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- stars: true,
- },
- {
- title: 'This is a longer heading talking all about the bonus this one wraps.',
- subtitle: 'This is more about the bonus',
- stars: false,
- },
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- stars: false,
- },
- {
- title: 'This is a longer heading talking all about the bonus this one wraps.',
- subtitle: 'This is more about the bonus',
- stars: false,
- },
- ];
-
- return (
-
- );
-};
-```
-
-### Promo tiles vertical list usage
-
-```jsx
-() => {
- const MOCK_PROMOS = [
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- stars: true,
- },
- {
- title: 'This is a longer heading talking all about the bonus this one wraps.',
- subtitle: 'This is more about the bonus',
- stars: false,
- },
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- stars: false,
- },
- {
- title: 'This is a longer heading talking all about the bonus this one wraps.',
- subtitle: 'This is more about the bonus',
- stars: false,
- },
- ];
-
- return (
-
- );
-};
-```
-
-### Product tiles usage
-
-```jsx
-() => {
- const MOCK_PRODUCTS = [
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- },
- {
- title: 'This is a longer heading talking all about the bonus this one wraps.',
- subtitle: 'This is more about the bonus',
- },
- {
- title: 'This is talking about the bonus.',
- subtitle: 'This is more about the bonus and all the other exciting things about this.',
- },
- ];
-
- return (
-
- )
-}
-```
-
----
-
-## Different status
-
-```jsx
-
-
-
Disabled
-
-
-
-
Read only
-
-
-
-
Invalid
-
-
-
-```
diff --git a/apps/docs/content/components/link.yaml b/apps/docs/content/components/link.yaml
deleted file mode 100644
index 7b23a5875..000000000
--- a/apps/docs/content/components/link.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Link
\ No newline at end of file
diff --git a/apps/docs/content/components/link/code.mdoc b/apps/docs/content/components/link/code.mdoc
deleted file mode 100644
index 8f61af4d4..000000000
--- a/apps/docs/content/components/link/code.mdoc
+++ /dev/null
@@ -1,56 +0,0 @@
-## Standalone Link
-
-```jsx
-
- Look I'm a standalone link
- Look I'm a standalone link
- Look I'm a standalone link
-
-```
-
-## Inline Link
-
-```jsx
-
-
- Lorem ipsum dolor{' '}
-
- look, I'm an inline link
- {' '}
- sit amet consectetur, adipisicing elit. Libero facilis odit voluptate reprehenderit laborum numquam ex optio
- doloribus magni repudiandae vero fugiat iusto tempora debitis sunt laboriosam nobis, ut voluptatum?
-
-
- Lorem ipsum dolor{' '}
-
- look, I'm an inline link with no underline
- {' '}
- sit amet consectetur, adipisicing elit. Libero facilis odit voluptate reprehenderit laborum numquam ex optio
- doloribus magni repudiandae vero fugiat iusto tempora debitis sunt laboriosam nobis, ut voluptatum?
-
-
- Lorem ipsum dolor{' '}
-
- look, I'm an inline link
- {' '}
- sit amet consectetur, adipisicing elit. Libero facilis odit voluptate reprehenderit laborum numquam ex optio
- doloribus magni repudiandae vero fugiat iusto tempora debitis sunt laboriosam nobis, ut voluptatum?
-
-
- Lorem ipsum dolor{' '}
-
- look, I'm an inline link
- {' '}
- sit amet consectetur, adipisicing elit. Libero facilis odit voluptate reprehenderit laborum numquam ex optio
- doloribus magni repudiandae vero fugiat iusto tempora debitis sunt laboriosam nobis, ut voluptatum?
-
-
-```
-
-## Using Next Link
-
-```jsx
-
- I'm using the Next Link
-
-```
\ No newline at end of file
diff --git a/apps/docs/content/components/list.yaml b/apps/docs/content/components/list.yaml
deleted file mode 100644
index a2c416544..000000000
--- a/apps/docs/content/components/list.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: List
\ No newline at end of file
diff --git a/apps/docs/content/components/list/code.mdoc b/apps/docs/content/components/list/code.mdoc
deleted file mode 100644
index dcda7804b..000000000
--- a/apps/docs/content/components/list/code.mdoc
+++ /dev/null
@@ -1,92 +0,0 @@
-## Default List
-
-```jsx
-
-
Default list
-
- Styled bullet list
- Styled bullet list
- Styled bullet list
-
- Styled bullet list
- Styled bullet list
- Styled bullet list
-
- Styled bullet list
- Styled bullet list
- Styled bullet list
-
- Styled bullet list
-
- Styled bullet list
-
-
Look
-
- Styled bullet list - primary
- Styled bullet list - primary
-
-
- Styled bullet list - hero
- Styled bullet list - hero
-
-
- Styled bullet list - neutral
- Styled bullet list - neutral
-
-
-```
diff --git a/apps/docs/content/components/panel.yaml b/apps/docs/content/components/panel.yaml
deleted file mode 100644
index 7fdbf0ac4..000000000
--- a/apps/docs/content/components/panel.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Panel
\ No newline at end of file
diff --git a/apps/docs/content/components/panel/code.mdoc b/apps/docs/content/components/panel/code.mdoc
deleted file mode 100644
index e50cd179b..000000000
--- a/apps/docs/content/components/panel/code.mdoc
+++ /dev/null
@@ -1,31 +0,0 @@
-## Panel Looks
-```jsx
-
-
-
- They found themselves standing on the very edge of the Wild Wood. Rocks and brambles and tree-roots behind them,
- confusedly heaped and tangled; in front, a great space of quiet fields, hemmed by lines of hedges black on the
- snow, and, far ahead, a glint of the familiar old river, while the wintry sun hung red and low on the horizon. The
- Otter, as knowing all the paths, took charge of the party, and they trailed out on a bee-line for a distant stile.
- Pausing there a moment and looking back, they saw the whole mass of the Wild Wood, dense, menacing, compact,
- grimly set in vast white surroundings; simultaneously they turned and made swiftly for home, for firelight and the
- familiar things it played on, for the voice, sounding cheerily outside their window, of the river that they knew
- and trusted in all its moods, that never made them afraid with any amazement.
-
- Panel footer
-
-
-
- They found themselves standing on the very edge of the Wild Wood. Rocks and brambles and tree-roots behind them,
- confusedly heaped and tangled; in front, a great space of quiet fields, hemmed by lines of hedges black on the
- snow, and, far ahead, a glint of the familiar old river, while the wintry sun hung red and low on the horizon. The
- Otter, as knowing all the paths, took charge of the party, and they trailed out on a bee-line for a distant stile.
- Pausing there a moment and looking back, they saw the whole mass of the Wild Wood, dense, menacing, compact,
- grimly set in vast white surroundings; simultaneously they turned and made swiftly for home, for firelight and the
- familiar things it played on, for the voice, sounding cheerily outside their window, of the river that they knew
- and trusted in all its moods, that never made them afraid with any amazement.
-
- Panel footer
-
-
-```
diff --git a/apps/docs/content/components/popover.yaml b/apps/docs/content/components/popover.yaml
deleted file mode 100644
index 65dc68505..000000000
--- a/apps/docs/content/components/popover.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Popover
\ No newline at end of file
diff --git a/apps/docs/content/components/popover/code.mdoc b/apps/docs/content/components/popover/code.mdoc
deleted file mode 100644
index 8b31212e1..000000000
--- a/apps/docs/content/components/popover/code.mdoc
+++ /dev/null
@@ -1,30 +0,0 @@
-## Default Popovers
-
-```jsx
-() => {
- const content = "Sudden and magnificent, the sun's broad golden disc showed itself over the horizon facing them; and the first rays, shooting across the level water-meadows, took the animals full in the eyes and dazzled them. When they were able to look once more, the Vision had vanished, and the air was full of the carol of birds that hailed the dawn.";
- return (
-
-
- With heading
-
-
- No heading
-
-
- )
-}
-```
-
-## Icon popover trigger
-
-```jsx
-() => {
- const content = "Sudden and magnificent, the sun's broad golden disc showed itself over the horizon facing them; and the first rays, shooting across the level water-meadows, took the animals full in the eyes and dazzled them. When they were able to look once more, the Vision had vanished, and the air was full of the carol of birds that hailed the dawn.";
- return (
-
- } />
-
- )
-}
-```
\ No newline at end of file
diff --git a/apps/docs/content/components/progress-bar.yaml b/apps/docs/content/components/progress-bar.yaml
deleted file mode 100644
index c0c2bb84c..000000000
--- a/apps/docs/content/components/progress-bar.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Progress Bar
\ No newline at end of file
diff --git a/apps/docs/content/components/progress-bar/code.mdoc b/apps/docs/content/components/progress-bar/code.mdoc
deleted file mode 100644
index 402196696..000000000
--- a/apps/docs/content/components/progress-bar/code.mdoc
+++ /dev/null
@@ -1,39 +0,0 @@
-## Progress Bar
-
-```jsx
-() => {
- const [barValue, setBarValue] = useState(0);
- const handleProgress = useCallback(
- (calc: number) => {
- const progress = barValue + calc;
- if (progress > 100) return setBarValue(100);
- if (progress < 0) return setBarValue(0);
- return setBarValue(progress);
- },
- [barValue],
- );
- return (
- <>
-
Default
-
-
Skinny
-
-
Use the +/- buttons below to demonstrate how the progress bar moves.
- );
-};
-```
diff --git a/apps/docs/content/components/radio-group.yaml b/apps/docs/content/components/radio-group.yaml
deleted file mode 100644
index 4311c1c90..000000000
--- a/apps/docs/content/components/radio-group.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Radio Group
\ No newline at end of file
diff --git a/apps/docs/content/components/radio-group/code.mdoc b/apps/docs/content/components/radio-group/code.mdoc
deleted file mode 100644
index 825f33e9c..000000000
--- a/apps/docs/content/components/radio-group/code.mdoc
+++ /dev/null
@@ -1,104 +0,0 @@
-This component does not contain an option for `checkbox` as it was decided it should be two separate components
-
-## RadioGroup sizes
-
-```jsx
-
-```
----
\ No newline at end of file
diff --git a/apps/docs/content/components/table.yaml b/apps/docs/content/components/table.yaml
deleted file mode 100644
index 555a6a442..000000000
--- a/apps/docs/content/components/table.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Table
\ No newline at end of file
diff --git a/apps/docs/content/components/table/code.mdoc b/apps/docs/content/components/table/code.mdoc
deleted file mode 100644
index 8773bf0ec..000000000
--- a/apps/docs/content/components/table/code.mdoc
+++ /dev/null
@@ -1,209 +0,0 @@
-## Default table with caption and footer
-
-```jsx
-
-
- Caption this table width is: (100%)
-
-
- Name
- Type
- Date Modified
-
-
-
-
- Games
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
-
-
- bootmgr
- System file
- 11/20/2010
-
-
- log.txt
- Text Document
- 1/18/2016
-
-
- Footer goes here and should colSpan all columns
-
-
-```
-
-## Bordered Table
-
-```jsx
-
-
- Caption this table width is: (100%)
-
-
- Name
- Type
- Date Modified
-
-
-
-
- Games
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
-
-
- bootmgr
- System file
- 11/20/2010
-
-
- log.txt
- Text Document
- 1/18/2016
-
-
- Footer goes here and should colSpan all columns
-
-
-```
-
-## Striped Table
-
-```jsx
-
-
- Caption this table width is: (100%)
-
-
- Name
- Type
- Date Modified
-
-
-
-
- Games
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
-
-
- bootmgr
- System file
- 11/20/2010
-
-
- log.txt
- Text Document
- 1/18/2016
-
-
- Footer goes here and should colSpan all columns
-
-
-```
-
-## Bordered & Striped Table
-
-```jsx
-
-
- Caption this table width is: (100%)
-
-
- Name
- Type
- Date Modified
-
-
-
-
- Games
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
-
-
- bootmgr
- System file
- 11/20/2010
-
-
- log.txt
- Text Document
- 1/18/2016
-
-
- Footer goes here and should colSpan all columns
-
-
-```
-
-## Highlighted Table
-
-```jsx
-
-
- Caption this table width is: (100%)
-
-
- Name
- Type
- Date Modified
- Extra Column 1
- Extra Column 2
-
-
-
-
- Games
- File folder
- 6/7/2020
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
- File folder
- 6/7/2020
-
-
- bootmgr
- System file
- 11/20/2010
- File folder
- 6/7/2020
-
-
- Program Files
- File folder
- 4/7/2021
- File folder
- 6/7/2020
-
-
- Footer goes here and should colSpan all columns
-
-
-```
diff --git a/apps/docs/content/components/tabs.yaml b/apps/docs/content/components/tabs.yaml
deleted file mode 100644
index e04979887..000000000
--- a/apps/docs/content/components/tabs.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Tabs
diff --git a/apps/docs/content/components/tabs/code.mdoc b/apps/docs/content/components/tabs/code.mdoc
deleted file mode 100644
index e3c7c4d22..000000000
--- a/apps/docs/content/components/tabs/code.mdoc
+++ /dev/null
@@ -1,285 +0,0 @@
-## Tabs default
-
-```jsx
-
-
- ‘It was much pleasanter at home,’ thought poor Alice, ‘when one wasn’t always growing
- larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn’t
- gone down that rabbit-hole — and yet — and yet — it’s rather curious, you know, this sort
- of life! I do wonder what can have happened to me! When I used to read fairy-tales, I
- fancied that kind of thing never happened, and now here I am in the middle of one! There
- ought to be a book written about me, that there ought! And when I grow up, I’ll write one.
-
-
- The chief difficulty Alice found at first was in managing her flamingo: she succeeded in
- getting its body tucked away, comfortably enough, under her arm, with its legs hanging
- down, but generally, just as she had got its neck nicely straightened out, and was going
- to give the hedgehog a blow with its head, it would twist itself round and look up in her
- face, with such a puzzled expression that she could not help bursting out laughing: and
- when she had got its head down, and was going to begin again, it was very provoking to
- find that the hedgehog had unrolled itself, and was in the act of crawling away: besides
- all this, there was generally a ridge or furrow in the way wherever she wanted to send the
- hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to
- other parts of the ground, Alice soon came to the conclusion that it was a very difficult
- game indeed.
-
-
- The Caterpillar and Alice looked at each other for some time in silence: at last the
- Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy
- voice.
-
- ‘Who are you?’ said the Caterpillar.
-
- This was not an encouraging opening for a conversation. Alice replied, rather shyly, ‘I —
- I hardly know, sir, just at present — at least I know who I was when I got up this
- morning, but I think I must have been changed several times since then.’
-
- ‘What do you mean by that?’ said the Caterpillar sternly. ‘Explain yourself!’
-
- ‘I can’t explain myself, I’m afraid, sir’ said Alice, ’because I’m not myself, you see.’
-
- ‘I don’t see,’ said the Caterpillar.
-
- ‘I’m afraid I can’t put it more clearly,’ Alice replied very politely, ‘for I can’t
- understand it myself to begin with; and being so many different sizes in a day is very
- confusing.’
-
-
-```
-
----
-
-## Tabs different color
-
-```jsx
-
-
- ‘It was much pleasanter at home,’ thought poor Alice, ‘when one wasn’t always growing
- larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn’t
- gone down that rabbit-hole — and yet — and yet — it’s rather curious, you know, this sort
- of life! I do wonder what can have happened to me! When I used to read fairy-tales, I
- fancied that kind of thing never happened, and now here I am in the middle of one! There
- ought to be a book written about me, that there ought! And when I grow up, I’ll write one.
-
-
- The chief difficulty Alice found at first was in managing her flamingo: she succeeded in
- getting its body tucked away, comfortably enough, under her arm, with its legs hanging
- down, but generally, just as she had got its neck nicely straightened out, and was going
- to give the hedgehog a blow with its head, it would twist itself round and look up in her
- face, with such a puzzled expression that she could not help bursting out laughing: and
- when she had got its head down, and was going to begin again, it was very provoking to
- find that the hedgehog had unrolled itself, and was in the act of crawling away: besides
- all this, there was generally a ridge or furrow in the way wherever she wanted to send the
- hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to
- other parts of the ground, Alice soon came to the conclusion that it was a very difficult
- game indeed.
-
-
- The Caterpillar and Alice looked at each other for some time in silence: at last the
- Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy
- voice.
-
- ‘Who are you?’ said the Caterpillar.
-
- This was not an encouraging opening for a conversation. Alice replied, rather shyly, ‘I —
- I hardly know, sir, just at present — at least I know who I was when I got up this
- morning, but I think I must have been changed several times since then.’
-
- ‘What do you mean by that?’ said the Caterpillar sternly. ‘Explain yourself!’
-
- ‘I can’t explain myself, I’m afraid, sir’ said Alice, ’because I’m not myself, you see.’
-
- ‘I don’t see,’ said the Caterpillar.
-
- ‘I’m afraid I can’t put it more clearly,’ Alice replied very politely, ‘for I can’t
- understand it myself to begin with; and being so many different sizes in a day is very
- confusing.’
-
-
-```
-
----
-
-## Tabs justified
-
-### Soft
-
-```jsx
-
-
- ‘It was much pleasanter at home,’ thought poor Alice, ‘when one wasn’t always growing
- larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn’t
- gone down that rabbit-hole — and yet — and yet — it’s rather curious, you know, this sort
- of life! I do wonder what can have happened to me! When I used to read fairy-tales, I
- fancied that kind of thing never happened, and now here I am in the middle of one! There
- ought to be a book written about me, that there ought! And when I grow up, I’ll write one.
-
-
- The chief difficulty Alice found at first was in managing her flamingo: she succeeded in
- getting its body tucked away, comfortably enough, under her arm, with its legs hanging
- down, but generally, just as she had got its neck nicely straightened out, and was going
- to give the hedgehog a blow with its head, it would twist itself round and look up in her
- face, with such a puzzled expression that she could not help bursting out laughing: and
- when she had got its head down, and was going to begin again, it was very provoking to
- find that the hedgehog had unrolled itself, and was in the act of crawling away: besides
- all this, there was generally a ridge or furrow in the way wherever she wanted to send the
- hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to
- other parts of the ground, Alice soon came to the conclusion that it was a very difficult
- game indeed.
-
-
- The Caterpillar and Alice looked at each other for some time in silence: at last the
- Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy
- voice.
-
- ‘Who are you?’ said the Caterpillar.
-
- This was not an encouraging opening for a conversation. Alice replied, rather shyly, ‘I —
- I hardly know, sir, just at present — at least I know who I was when I got up this
- morning, but I think I must have been changed several times since then.’
-
- ‘What do you mean by that?’ said the Caterpillar sternly. ‘Explain yourself!’
-
- ‘I can’t explain myself, I’m afraid, sir’ said Alice, ’because I’m not myself, you see.’
-
- ‘I don’t see,’ said the Caterpillar.
-
- ‘I’m afraid I can’t put it more clearly,’ Alice replied very politely, ‘for I can’t
- understand it myself to begin with; and being so many different sizes in a day is very
- confusing.’
-
-
-```
-
-### Hero
-
-```jsx
-
-
- ‘It was much pleasanter at home,’ thought poor Alice, ‘when one wasn’t always growing
- larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn’t
- gone down that rabbit-hole — and yet — and yet — it’s rather curious, you know, this sort
- of life! I do wonder what can have happened to me! When I used to read fairy-tales, I
- fancied that kind of thing never happened, and now here I am in the middle of one! There
- ought to be a book written about me, that there ought! And when I grow up, I’ll write one.
-
-
- The chief difficulty Alice found at first was in managing her flamingo: she succeeded in
- getting its body tucked away, comfortably enough, under her arm, with its legs hanging
- down, but generally, just as she had got its neck nicely straightened out, and was going
- to give the hedgehog a blow with its head, it would twist itself round and look up in her
- face, with such a puzzled expression that she could not help bursting out laughing: and
- when she had got its head down, and was going to begin again, it was very provoking to
- find that the hedgehog had unrolled itself, and was in the act of crawling away: besides
- all this, there was generally a ridge or furrow in the way wherever she wanted to send the
- hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to
- other parts of the ground, Alice soon came to the conclusion that it was a very difficult
- game indeed.
-
-
- The Caterpillar and Alice looked at each other for some time in silence: at last the
- Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy
- voice.
-
- ‘Who are you?’ said the Caterpillar.
-
- This was not an encouraging opening for a conversation. Alice replied, rather shyly, ‘I —
- I hardly know, sir, just at present — at least I know who I was when I got up this
- morning, but I think I must have been changed several times since then.’
-
- ‘What do you mean by that?’ said the Caterpillar sternly. ‘Explain yourself!’
-
- ‘I can’t explain myself, I’m afraid, sir’ said Alice, ’because I’m not myself, you see.’
-
- ‘I don’t see,’ said the Caterpillar.
-
- ‘I’m afraid I can’t put it more clearly,’ Alice replied very politely, ‘for I can’t
- understand it myself to begin with; and being so many different sizes in a day is very
- confusing.’
-
-
-```
-
----
-
-## Configurable
-
-```jsx
-() => {
- const COLORS = ['primary', 'hero', undefined];
- const LOOKS = ['material', 'default'];
-
- const [color, setColor] = useState();
- const [justify, setJustify] = useState(false);
- const [look, setLook] = useState('default');
-
- return (
-
-
-
-
-
-
-
-
-
- ‘It was much pleasanter at home,’ thought poor Alice, ‘when one wasn’t always growing
- larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn’t
- gone down that rabbit-hole — and yet — and yet — it’s rather curious, you know, this sort
- of life! I do wonder what can have happened to me! When I used to read fairy-tales, I
- fancied that kind of thing never happened, and now here I am in the middle of one! There
- ought to be a book written about me, that there ought! And when I grow up, I’ll write one.
-
-
- The chief difficulty Alice found at first was in managing her flamingo: she succeeded in
- getting its body tucked away, comfortably enough, under her arm, with its legs hanging
- down, but generally, just as she had got its neck nicely straightened out, and was going
- to give the hedgehog a blow with its head, it would twist itself round and look up in her
- face, with such a puzzled expression that she could not help bursting out laughing: and
- when she had got its head down, and was going to begin again, it was very provoking to
- find that the hedgehog had unrolled itself, and was in the act of crawling away: besides
- all this, there was generally a ridge or furrow in the way wherever she wanted to send the
- hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to
- other parts of the ground, Alice soon came to the conclusion that it was a very difficult
- game indeed.
-
-
- The Caterpillar and Alice looked at each other for some time in silence: at last the
- Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy
- voice.
-
- ‘Who are you?’ said the Caterpillar.
-
- This was not an encouraging opening for a conversation. Alice replied, rather shyly, ‘I —
- I hardly know, sir, just at present — at least I know who I was when I got up this
- morning, but I think I must have been changed several times since then.’
-
- ‘What do you mean by that?’ said the Caterpillar sternly. ‘Explain yourself!’
-
- ‘I can’t explain myself, I’m afraid, sir’ said Alice, ’because I’m not myself, you see.’
-
- ‘I don’t see,’ said the Caterpillar.
-
- ‘I’m afraid I can’t put it more clearly,’ Alice replied very politely, ‘for I can’t
- understand it myself to begin with; and being so many different sizes in a day is very
- confusing.’
-
-
-
- )
-}
-```
-
diff --git a/apps/docs/content/components/textarea.yaml b/apps/docs/content/components/textarea.yaml
deleted file mode 100644
index d7fadb31c..000000000
--- a/apps/docs/content/components/textarea.yaml
+++ /dev/null
@@ -1 +0,0 @@
-name: Textarea
diff --git a/apps/docs/content/components/textarea/code.mdoc b/apps/docs/content/components/textarea/code.mdoc
deleted file mode 100644
index e9adc0586..000000000
--- a/apps/docs/content/components/textarea/code.mdoc
+++ /dev/null
@@ -1,38 +0,0 @@
-## Textarea sizes
-
-```tsx
-() => {
- const SIZES = ['small', 'medium', 'large', 'xlarge'] as const;
- return (
-
- {SIZES.map(size => (
-
-
{size}
-
-
- ))}
-
- )
-}
-```
-
----
-
-## Different status
-
-```jsx
-