import React from 'react'
import { type Meta } from '@storybook/react'
import { Text } from '~components/Text'
import { StickerSheet, type StickerSheetStory } from '~storybook/components/StickerSheet'
import { Well, type WellProps } from '../index'
import { borderStyleTypes, wellColors } from '../types'
export default {
title: 'Components/Well',
parameters: {
chromatic: { disable: false },
controls: { disable: true },
},
} satisfies Meta
const WellWrapped = (props: WellProps): JSX.Element => (
Bacon ipsum dolor amet andouille buffalo beef boudin kielbasa drumstick fatback cow tongue
ground round chicken. Jowl cow short ribs, ham tongue turducken spare ribs pig drumstick chuck
meatball. Buffalo turducken pancetta tail salami chicken. Bresaola venison pastrami beef.
)
const StickerSheetTemplate: StickerSheetStory = {
render: () => (
<>
{wellColors.map((color) => (
{borderStyleTypes.map((border) => (
))}
))}
>
),
}
export const StickerSheetDefault: StickerSheetStory = {
...StickerSheetTemplate,
name: 'Sticker Sheet (Default)',
}