import React from 'react'
import { Image } from './Image.jsx'

export default {
  title: 'Design System/Display/Image',
  component: Image,
  render: (args) => (
    <Image {...args} style={{ width: '200px', height: '300px' }} />
  ),
}

export const Default = {
  args: {
    src: 'https://picsum.photos/200/300',
    placeholderSrc: 'https://picsum.photos/20/30',
  },
}
