import type { Meta, StoryObj } from '@storybook/react'; import type { ReactNode } from 'react'; import { Image, View } from 'react-native'; import { Button } from './Button'; const meta = { title: 'UI/Button', component: Button, args: {}, } satisfies Meta; export default meta; type Story = StoryObj; const Stack = ({ children }: { children: ReactNode }) => ( {children} ); const Row = ({ children }: { children: ReactNode }) => ( {children} ); export const Base: Story = {}; const Icon = () => ; export const Variants: Story = { render: (args) => (