diff --git a/packages/design-system/src/components/Separator/Separator.stories.tsx b/packages/design-system/src/components/Separator/Separator.stories.tsx new file mode 100644 index 00000000..34974e16 --- /dev/null +++ b/packages/design-system/src/components/Separator/Separator.stories.tsx @@ -0,0 +1,31 @@ +// +// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project +// +// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md) +// +// SPDX-License-Identifier: MIT +// +import { type Meta } from '@storybook/react' +import { Separator } from './Separator' +import { SeparatorText as SeparatorTextComponent } from './SeparatorText' + +const meta: Meta = { + title: 'Components/Separator', + component: Separator, +} + +export default meta + +export const Default = () => ( +
+ +
+) + +export const SeparatorText = () => ( +
+ + Something + +
+)