Skip to content

Commit

Permalink
Use styled system array props
Browse files Browse the repository at this point in the history
  • Loading branch information
pksjce committed Sep 8, 2022
1 parent 72ad933 commit 6335f97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions src/PageHeader/PageHeader.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import React from 'react'
import {Meta, Story} from '@storybook/react'
import {Button, IconButton, Breadcrumbs} from '..'
import {Box, Button, IconButton, Breadcrumbs} from '..'
import {EyeClosedIcon, SearchIcon, TriangleDownIcon} from '@primer/octicons-react'

//import {Box, BranchName, Heading, Link, StateLabel, TabNav, Text} from '..'

import {PageHeader} from './PageHeader'

const meta: Meta = {
Expand All @@ -24,7 +22,12 @@ const Template: Story = args => (
</PageHeader.ContextNav>
<PageHeader.TitleArea>Branches</PageHeader.TitleArea>
<PageHeader.Actions>
<Button variant="primary">New Branch</Button>
<Box sx={{display: ['none', 'inline']}}>
<Button variant="primary">New Branch</Button>
</Box>
<Box sx={{display: ['inline', 'none']}}>
<Button variant="primary">New</Button>
</Box>
<IconButton aria-label="Search" icon={SearchIcon} />
</PageHeader.Actions>
</PageHeader>
Expand Down
2 changes: 1 addition & 1 deletion src/PageHeader/PageHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const ContextNav: React.FC<React.PropsWithChildren<ContextNavProps>> = ({
flexShrink: 1,
minWidth: 1 // Hack to prevent overflowing content from pushing the pane region to the next line
}
return <Box sx={merge(contentNavStyles, sx)}>{children}</Box>
return <Box sx={merge<BetterSystemStyleObject>(contentNavStyles, sx)}>{children}</Box>
}
const ParentLink: React.FC<React.PropsWithChildren<PageHeaderProps>> = ({children, sx = {}}) => {
return <Box sx={sx}>{children}</Box>
Expand Down

0 comments on commit 6335f97

Please sign in to comment.