Skip to content

Commit 2943ad5

Browse files
committed
feat(CC-batch-5): pulled updates from all components
1 parent 0afb9e8 commit 2943ad5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import figma from '@figma/code-connect';
2+
import { CalendarMonth } from '@patternfly/react-core';
3+
4+
// Documentation for CalendarMonth can be found at https://www.patternfly.org/components/calendar-month
5+
6+
figma.connect(
7+
CalendarMonth,
8+
'https://www.figma.com/design/aEBBvq0J3EPXxHvv6WgDx9/PatternFly-6--Components-Test?node-id=7741-2677',
9+
{
10+
props: {
11+
date: '2025-06-16'
12+
},
13+
example: (props) => <CalendarMonth date={new Date(props.date)} onChange={() => {}} onMonthChange={() => {}} />
14+
}
15+
);

0 commit comments

Comments
 (0)