Skip to content

Commit

Permalink
add to the gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed May 13, 2023
1 parent f15d3db commit 308045e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/types/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export interface ViewStyleProps extends StyleProps {
borderStartWidth?: Responsive<BorderSizeValue>;
/** The width of the border on the logical end side, depending on the layout direction. See [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-width). */
borderEndWidth?: Responsive<BorderSizeValue>;
// borderLeftWidth?: BorderSizeValue,
borderLeftWidth?: BorderSizeValue;
borderRightWidth?: BorderSizeValue;
/** The width of the top border. See [MDN](https://developer.mozilla.org/en-US/docs/Web/CSS/border-top-width). */
borderTopWidth?: Responsive<BorderSizeValue>;
Expand Down
18 changes: 16 additions & 2 deletions stories/Gallery.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,22 @@ const Template: Story = args => {
`}
/>
</View>
<View width="size-2400" backgroundColor="light">
<Heading>Statistic</Heading>
<View
width="size-2400"
backgroundColor="light"
borderColor="dark"
borderLeftWidth="thin"
>
<Flex
direction="column"
alignItems="center"
justifyContent="center"
gap={'size-100'}
height="100%"
>
<Heading>Statistic</Heading>
<Text textSize="xxlarge">437</Text>
</Flex>
</View>
</Flex>
</View>
Expand Down

0 comments on commit 308045e

Please sign in to comment.