import { Meta, StoryObj } from '@storybook/react'; import { styled } from 'styled-components'; import { Spacer } from '..'; const BlackBox = styled.div` width: 100%; height: 30px; background-color: #e9ecef; `; const meta: Meta = { title: 'Opize Component/Spacer', component: Spacer, tags: ['autodocs'], }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { height: '30px', }, render: (args) => ( <> ), };