diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c858d6753..ea37e39175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - Add single search flavor for `Dropdown` component @Bugaa92 ([#839](https://github.com/stardust-ui/react/pull/839)) - Add multiple selection flavor for `Dropdown` component @Bugaa92 ([#845](https://github.com/stardust-ui/react/pull/845)) - Add `black` and `white` options for the `color` prop of the `Label` component @mnajdova ([#855](https://github.com/stardust-ui/react/pull/855)) +- Add `Flex` component @kuzhelov ([#802](https://github.com/stardust-ui/react/pull/802)) ## [v0.20.0](https://github.com/stardust-ui/react/tree/v0.20.0) (2019-02-06) diff --git a/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx b/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx new file mode 100644 index 0000000000..f74c052376 --- /dev/null +++ b/docs/src/examples/components/Flex/Types/FlexExampleColumns.shorthand.tsx @@ -0,0 +1,42 @@ +import * as React from 'react' +import { Flex, Segment } from '@stardust-ui/react' + +const FlexExampleColumns = () => ( + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +) + +export default FlexExampleColumns diff --git a/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx b/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx new file mode 100644 index 0000000000..093d13b00b --- /dev/null +++ b/docs/src/examples/components/Flex/Types/FlexExampleInput.shorthand.tsx @@ -0,0 +1,23 @@ +import * as React from 'react' +import { Flex, Input, Button, Label } from '@stardust-ui/react' + +const FlexExampleInput = () => ( + + + + + + +