diff --git a/lib/components/Seperator/index.stories.tsx b/lib/components/Seperator/index.stories.tsx new file mode 100644 index 0000000..115228d --- /dev/null +++ b/lib/components/Seperator/index.stories.tsx @@ -0,0 +1,71 @@ +import type { Meta, StoryObj } from '@storybook/react' + +import { Separator } from '.' + +const meta: Meta = { + title: 'Components/Separator', + component: Separator, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} + +export default meta +type Story = StoryObj + +export const Default: Story = { + args: {}, + render: (args) => ( +
+
+

Radix Primitives

+

+ An open-source UI component library. +

+
+ +
+
Blog
+ +
Docs
+ +
Source
+
+
+ ), +} + +export const Vertical: Story = { + args: { + orientation: 'vertical', + }, + render: (args) => ( +
+
+
Blog
+ +
Docs
+ +
Source
+
+
+ ), +} + +export const Horizontal: Story = { + args: { + orientation: 'horizontal', + }, + render: (args) => ( +
+
+

First Element

+
+ +
+

Second Element

+
+
+ ), +} diff --git a/lib/components/Seperator/index.tsx b/lib/components/Seperator/index.tsx new file mode 100644 index 0000000..e276797 --- /dev/null +++ b/lib/components/Seperator/index.tsx @@ -0,0 +1,31 @@ +'use client' + +import * as SeparatorPrimitive from '@radix-ui/react-separator' +import * as React from 'react' + +import { cn } from '@/utils' + +const Separator = React.forwardRef< + React.ElementRef, + React.ComponentPropsWithoutRef +>( + ( + { className, orientation = 'horizontal', decorative = true, ...props }, + ref + ) => ( + + ) +) +Separator.displayName = SeparatorPrimitive.Root.displayName + +export { Separator } diff --git a/package.json b/package.json index 8c6346d..c0e8fbe 100644 --- a/package.json +++ b/package.json @@ -38,6 +38,7 @@ "@radix-ui/react-label": "^2.1.0", "@radix-ui/react-progress": "^1.1.0", "@radix-ui/react-radio-group": "^1.2.0", + "@radix-ui/react-separator": "^1.1.0", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tooltip": "^1.1.2", "@radix-ui/react-switch": "^1.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0d4381f..16d87f8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -843,6 +843,9 @@ packages: '@types/react-dom': optional: true + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} '@radix-ui/react-radio-group@1.2.1': resolution: {integrity: sha512-kdbv54g4vfRjja9DNWPMxKvXblzqbpEC8kspEkZ6dVP7kQksGCn+iZHkcCz2nb00+lPdRvxrqy4WrvvV1cNqrQ==} peerDependencies: @@ -856,6 +859,8 @@ packages: '@types/react-dom': optional: true + check-error@1.0.3: + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} '@radix-ui/react-roving-focus@1.1.0': resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==} peerDependencies: