Skip to content

Commit

Permalink
fix: npm run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
dragnoir committed Feb 9, 2024
1 parent 3e8894f commit e88350f
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions src/stories/EReceiptThumbail.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,38 @@ function Template(args) {
return (
<View style={{display: 'flex', flexDirection: 'column', gap: 12}}>
<View>
<EReceiptThumbnail {...args} iconSize='large' />
<EReceiptThumbnail
{...args}
iconSize="large"
/>
</View>

<View style={{height: 116, width: 89, borderRadius: 0, overflow: 'hidden'}}>
<EReceiptThumbnail {...args} iconSize='small' />
<EReceiptThumbnail
{...args}
iconSize="small"
/>
</View>

<View style={{height: 140, width: 143, borderRadius: 16, overflow: 'hidden'}}>
<EReceiptThumbnail {...args} iconSize='medium' />
<EReceiptThumbnail
{...args}
iconSize="medium"
/>
</View>

<View style={{height: 140, width: 283, borderRadius: 16, overflow: 'hidden'}}>
<EReceiptThumbnail {...args} iconSize='medium' />
<EReceiptThumbnail
{...args}
iconSize="medium"
/>
</View>

<View style={{height: 175, width: 335, borderRadius: 16, overflow: 'hidden'}}>
<EReceiptThumbnail {...args} iconSize='large' />
<EReceiptThumbnail
{...args}
iconSize="large"
/>
</View>
</View>
);
Expand Down

0 comments on commit e88350f

Please sign in to comment.