diff --git a/README.md b/README.md index f838148..0f0b672 100644 --- a/README.md +++ b/README.md @@ -91,11 +91,11 @@ function App() { ### General -- [Banner](https://github.com/wri/wri-design-systems/tree/main/src/components/Banner) - [NavigationRail](https://github.com/wri/wri-design-systems/tree/main/src/components/NavigationRail) - [Slider](https://github.com/wri/wri-design-systems/tree/main/src/components/Slider) - [TabBar](https://github.com/wri/wri-design-systems/tree/main/src/components/TabBar) - [Tag](https://github.com/wri/wri-design-systems/tree/main/src/components/Tag) +- [InlineMessage](https://github.com/wri/wri-design-systems/tree/main/src/components/InlineMessage) ### Buttons @@ -111,7 +111,7 @@ function App() { ### Inputs -- [Input](https://github.com/wri/wri-design-systems/tree/main/src/components/Input) +- [TextInput](https://github.com/wri/wri-design-systems/tree/main/src/components/TextInput) - [Textarea](https://github.com/wri/wri-design-systems/tree/main/src/components/Textarea) ### Layers diff --git a/src/components/Banner/README.md b/src/components/Banner/README.md deleted file mode 100644 index 9f949d8..0000000 --- a/src/components/Banner/README.md +++ /dev/null @@ -1,129 +0,0 @@ -# Banner - -[Storybook Ref](https://wri.github.io/wri-design-systems/?path=/docs/banner--docs) - -[BannerDemo](https://github.com/wri/wri-design-systems/blob/main/src/components/Banner/BannerDemo.tsx) - -## Import - -```js -import { Banner } from 'wri-design-systems' -``` - -## Usage - -```html - -``` - -## Props - -```ts -type BannerProps = { - label: string - caption?: string - variant: 'info-white' | 'info-grey' | 'success' | 'warning' | 'error' - size?: 'small' | 'large' - icon?: React.ReactNode - onActionClick?: VoidFunction - actionLabel?: string - isButtonRight?: boolean -} -``` - -## Info White - -```html - -``` - -## Info Grey - -```html - -``` - -## Success - -```html - -``` - -## Warning - -```html - -``` - -## Error - -```html - -``` - -## Button Right - -```html - -``` - -## Small - -```html - -``` - -## Small Button Right - -```html - -``` diff --git a/src/components/Buttons/Button/README.md b/src/components/Buttons/Button/README.md index a03801d..8789ae7 100644 --- a/src/components/Buttons/Button/README.md +++ b/src/components/Buttons/Button/README.md @@ -13,10 +13,7 @@ import { Button } from 'wri-design-systems' ## Usage ```html -