Skip to content

Commit 454ff20

Browse files
authoredMar 5, 2025··
fix(SplitPageLayout): add className prop (#5737)
1 parent 2646c12 commit 454ff20

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed
 

‎.changeset/three-lobsters-wonder.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/react": minor
3+
---
4+
5+
fix(SplitPageLayout): add className prop

‎packages/react/src/SplitPageLayout/SplitPageLayout.test.tsx

+15
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,19 @@ describe('SplitPageLayout', () => {
4444

4545
expect(pane.getAttribute('id')).toBe('customId')
4646
})
47+
48+
it('applies custom className', () => {
49+
const {container} = render(
50+
<ThemeProvider>
51+
<SplitPageLayout className="custom-class">
52+
<SplitPageLayout.Header>Header</SplitPageLayout.Header>
53+
<SplitPageLayout.Content>Content</SplitPageLayout.Content>
54+
<SplitPageLayout.Pane>Pane</SplitPageLayout.Pane>
55+
<SplitPageLayout.Footer>Footer</SplitPageLayout.Footer>
56+
</SplitPageLayout>
57+
</ThemeProvider>,
58+
)
59+
60+
expect(container.firstChild).toHaveClass('custom-class')
61+
})
4762
})

‎packages/react/src/SplitPageLayout/SplitPageLayout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {PageLayout} from '../PageLayout'
1111
// ----------------------------------------------------------------------------
1212
// SplitPageLayout
1313

14-
export type SplitPageLayoutProps = SxProp
14+
export type SplitPageLayoutProps = SxProp & {className?: string}
1515

1616
export const Root: React.FC<React.PropsWithChildren<SplitPageLayoutProps>> = props => {
1717
return (

0 commit comments

Comments
 (0)
Please sign in to comment.